summaryrefslogtreecommitdiff
path: root/man/Makefile.am
blob: b54b78c22628dfd65ba5190340f7640f4446073b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
man_MANS = inotifywait.1 inotifywatch.1
EXTRA_DIST = $(man_MANS)

dist-hook:
    # Custom man page preprocessing!  Yippee!!!
	PACKAGE_VERSION=`sed -n -r -e 's|AC_INIT\(.+, \[(.+)\], .+\)|\1|p' \
	                 $(top_distdir)/configure.ac`; \
	DATE=`date +'%B %d, %Y'`; \
	for file in $(man_MANS); do \
	    sed -r -i -e "s|_PACKAGE_VERSION_|$${PACKAGE_VERSION}|g" \
	              -e "s|_DATE_|$${DATE}|g" $(distdir)/$${file}; \
	done
	touch -d '2 days ago' $(distdir)/*