summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2007-02-01 20:56:53 +0000
committerWill Estes <wlestes@users.sourceforge.net>2007-02-01 20:56:53 +0000
commit221b66badc61f57774abd1355b01b00a4fe2838b (patch)
treed4d94da7efe9f8bcf2955a9ecf2f9d4057d7558c /doc
parent5f6bd9c140009ad46dfad295435ad8a5394752bd (diff)
more changes to build system to distribute man page
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am10
1 files changed, 2 insertions, 8 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 1dd2120..8614963 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -3,17 +3,11 @@ help2man = @HELP2MAN@
info_TEXINFOS = flex.texi
dist_man_MANS = flex.1
-MAINTAINERCLEANFILES = \
- flex.1
-
CLEANFILES = \
flex.hks \
flex.ops
-EXTRA_DIST = \
- $(man_MANS)
-
-$(man_MANS): $(top_srcdir)/main.c
- for i in $(man_MANS) ; do \
+$(dist_man_MANS): $(top_srcdir)/main.c
+ for i in $(dist_man_MANS) ; do \
$(help2man) --name='fast lexical analyzer generator' --section=`echo $$i|rev|cut -f 1 -d .|rev` ../flex > $$i ; \
done