mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
+ VERSION wasn't being propagated to the sub-make happening in docs/
so I exported VERSION and invoked make with a -C docs
This commit is contained in:
parent
9cf3bfa7c1
commit
cbd6628c8c
3
Makefile
3
Makefile
@ -21,6 +21,7 @@
|
|||||||
PROG := busybox
|
PROG := busybox
|
||||||
VERSION := 0.43
|
VERSION := 0.43
|
||||||
BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
|
BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
|
||||||
|
export VERSION
|
||||||
|
|
||||||
# Set the following to `true' to make a debuggable build.
|
# Set the following to `true' to make a debuggable build.
|
||||||
# Leave this set to `false' for production use.
|
# Leave this set to `false' for production use.
|
||||||
@ -131,7 +132,7 @@ install: busybox busybox.links
|
|||||||
|
|
||||||
.PHONY: dist release
|
.PHONY: dist release
|
||||||
dist release: distclean
|
dist release: distclean
|
||||||
cd docs && $(MAKE) clean all
|
$(MAKE) -C docs clean all
|
||||||
cd ..; \
|
cd ..; \
|
||||||
rm -rf busybox-$(VERSION); \
|
rm -rf busybox-$(VERSION); \
|
||||||
cp -a busybox busybox-$(VERSION); \
|
cp -a busybox busybox-$(VERSION); \
|
||||||
|
Loading…
Reference in New Issue
Block a user