aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f4df9c702..a17225c0f 100644
--- a/Makefile
+++ b/Makefile
@@ -23,6 +23,9 @@ VERSION := 0.46
23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") 23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24export VERSION 24export VERSION
25 25
26# If you want a static binary, turn this on.
27DOSTATIC = false
28
26# Set the following to `true' to make a debuggable build. 29# Set the following to `true' to make a debuggable build.
27# Leave this set to `false' for production use. 30# Leave this set to `false' for production use.
28# eg: `make DODEBUG=true tests' 31# eg: `make DODEBUG=true tests'
@@ -37,9 +40,6 @@ DODEBUG = false
37# Do not enable this for production builds... 40# Do not enable this for production builds...
38DODMALLOC = false 41DODMALLOC = false
39 42
40# If you want a static binary, turn this on.
41DOSTATIC = false
42
43# If you are running a cross compiler, you may want to set this 43# If you are running a cross compiler, you may want to set this
44# to something more interesting... 44# to something more interesting...
45CROSS = 45CROSS =
@@ -182,6 +182,9 @@ distclean: clean
182install: busybox busybox.links 182install: busybox busybox.links
183 ./install.sh $(PREFIX) 183 ./install.sh $(PREFIX)
184 184
185install-hardlinks: busybox busybox.links
186 ./install.sh $(PREFIX) --hardlinks
187
185dist release: distclean doc 188dist release: distclean doc
186 cd ..; \ 189 cd ..; \
187 rm -rf busybox-$(VERSION); \ 190 rm -rf busybox-$(VERSION); \