+ VERSION wasn't being propagated to the sub-make happening in docs/
authorJohn Beppu <beppu@lbox.org>
Thu, 13 Apr 2000 22:57:45 +0000 (22:57 -0000)
committerJohn Beppu <beppu@lbox.org>
Thu, 13 Apr 2000 22:57:45 +0000 (22:57 -0000)
  so I exported VERSION and invoked make with a -C docs

Makefile

index e2d98549f19b6f60d9e8c247006ce13a36ff2c75..bc37b4a001e4a176e605a466a4240acdd450b5ad 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,7 @@
 PROG      := busybox
 VERSION   := 0.43
 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
+export VERSION
 
 # Set the following to `true' to make a debuggable build.
 # Leave this set to `false' for production use.
@@ -131,7 +132,7 @@ install: busybox busybox.links
 
 .PHONY: dist release
 dist release: distclean
-       cd docs && $(MAKE) clean all 
+       $(MAKE) -C docs clean all 
        cd ..;                                  \
        rm -rf busybox-$(VERSION);              \
        cp -a busybox busybox-$(VERSION);       \