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 28 29 30
|
# Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = \
foreign \
dist-xz \
dist-bzip2 \
std-options
AM_DISTCHECK_CONFIGURE_FLAGS = \
--disable-maintainer-mode
SUBDIRS = sbin etc examples doc contrib html tests
DIST_SUBDIRS = $(SUBDIRS) m4
EXTRA_DIST = autogen.sh README
if GIT_TREE
all-local: README
README: README.md
sed -e '/^Upgrade Notes$$/p' -e '/^Git$$/,/^Upgrade Notes$$/d' $< > $@
endif
uninstall-local:
@-rmdir --ignore-fail-on-non-empty $(DESTDIR)$(docdir)
|