summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorlaforge <laforge>2001-05-20 15:25:38 +0000
committerlaforge <laforge>2001-05-20 15:25:38 +0000
commita3bb2f154ad5ef6e9ff4f819fc00fe561f9ef7b6 (patch)
tree1b48a26363ff9f5b0afe9bef9d080fa11a55d2ec /Makefile.in
parent161eb2989611f209f40332e1ad3303ec051d18ab (diff)
moved doc-generation to distribution-time, not compile-time
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ec93a5b..4a71406 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -14,6 +14,10 @@ endif
all: recurse ulogd
+distrib:
+ @for d in $(SUBDIRS); do if ! make -C $$d distrib; then exit 1; fi; done
+ @make distclean
+
recurse:
@for d in $(SUBDIRS); do if ! make -C $$d; then exit 1; fi; done
@@ -27,7 +31,7 @@ clean:
distclean: clean
@for d in $(SUBDIRS); do if ! make -C $$d $@; then exit 1; fi; done
- rm -f Makefile config.cache config.log config.status Rules.make configure
+ rm -f Makefile config.cache config.log config.status Rules.make
install: all
@for d in $(SUBDIRS); do if ! make -C $$d $@; then exit 1; fi; done