1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
## Process this file with automake to produce Makefile.in
include $(top_srcdir)/build-misc/common.mk
## We're not a GNU project, and don't quite meet GNU standards
AUTOMAKE_OPTIONS = foreign
DISTCHECK_CONFIGURE_FLAGS = --with-config=dist
## This one just recurses into the subdirectories
SUBDIRS = autoconf build-misc include src lib tools doc
EXTRA_DIST = ChangeLog README
ACLOCAL = @ACLOCAL@ -I autoconf
distclean-local:
rm -rf debug-tree include/config.h.debug include/config.h
# Ensure the correct config.h is distributed
dist-hook:
(cd $(distdir)/include && cmp config.h.dist config.h || cp config.h.dist config.h)
sign:
gpg --detach-sign $(distdir).tar.gz
md5sum $(distdir).tar.gz | gpg --clearsign > $(distdir).tar.gz.md5sum
|