59 lines
1.9 KiB
Makefile
59 lines
1.9 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
# by Michal Trojnara 2015-2017
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = src doc tools tests
|
|
|
|
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
|
libtool: $(LIBTOOL_DEPS)
|
|
$(SHELL) ./config.status libtool
|
|
|
|
EXTRA_DIST = PORTS BUGS COPYRIGHT.GPL CREDITS
|
|
EXTRA_DIST += INSTALL.W32 INSTALL.WCE INSTALL.FIPS
|
|
EXTRA_DIST += build-android.sh .travis.yml
|
|
|
|
docdir = $(datadir)/doc/stunnel
|
|
doc_DATA = INSTALL README TODO COPYING AUTHORS ChangeLog
|
|
doc_DATA += PORTS BUGS COPYRIGHT.GPL CREDITS
|
|
doc_DATA += INSTALL.W32 INSTALL.WCE INSTALL.FIPS
|
|
|
|
distcleancheck_listfiles = find -type f -exec sh -c 'test -f $(srcdir)/{} || echo {}' ';'
|
|
|
|
distclean-local:
|
|
rm -rf autom4te.cache
|
|
# rm -f $(distdir)-win32-installer.exe
|
|
|
|
#dist-hook:
|
|
# makensis -NOCD -DVERSION=${VERSION} \
|
|
# -DSTUNNEL_DIR=$(srcdir) \
|
|
# -DROOT_DIR=/usr/src \
|
|
# $(srcdir)/tools/stunnel.nsi
|
|
|
|
sign: dist
|
|
cp -f $(distdir).tar.gz $(distdir)-win32-installer.exe $(distdir)-android.zip ../dist
|
|
gpg-agent --daemon /bin/sh -c "cd ../dist; gpg --yes --armor --detach-sign --force-v3-sigs $(distdir).tar.gz; gpg --yes --armor --detach-sign --force-v3-sigs $(distdir)-win32-installer.exe; gpg --yes --armor --detach-sign --force-v3-sigs $(distdir)-android.zip"
|
|
sha256sum $(distdir).tar.gz >../dist/$(distdir).tar.gz.sha256
|
|
sha256sum $(distdir)-win32-installer.exe >../dist/$(distdir)-win32-installer.exe.sha256
|
|
sha256sum $(distdir)-android.zip >../dist/$(distdir)-android.zip.sha256
|
|
cat ../dist/$(distdir)*.sha256 | tac
|
|
|
|
cert:
|
|
$(MAKE) -C tools cert
|
|
|
|
test: check
|
|
|
|
install-data-hook:
|
|
@echo "*********************************************************"
|
|
@echo "* Type 'make cert' to also install a sample certificate *"
|
|
@echo "*********************************************************"
|
|
|
|
edit = sed \
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g'
|
|
|
|
stunnel.pod: Makefile
|
|
$(edit) '$(srcdir)/$@.in' >$@
|
|
|
|
stunnel.pod: $(srcdir)/stunnel.pod
|