diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -23,6 +23,9 @@ VERSION := 0.46 | |||
23 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") | 23 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") |
24 | export VERSION | 24 | export VERSION |
25 | 25 | ||
26 | # If you want a static binary, turn this on. | ||
27 | DOSTATIC = 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... |
38 | DODMALLOC = false | 41 | DODMALLOC = false |
39 | 42 | ||
40 | # If you want a static binary, turn this on. | ||
41 | DOSTATIC = 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... |
45 | CROSS = | 45 | CROSS = |
@@ -182,6 +182,9 @@ distclean: clean | |||
182 | install: busybox busybox.links | 182 | install: busybox busybox.links |
183 | ./install.sh $(PREFIX) | 183 | ./install.sh $(PREFIX) |
184 | 184 | ||
185 | install-hardlinks: busybox busybox.links | ||
186 | ./install.sh $(PREFIX) --hardlinks | ||
187 | |||
185 | dist release: distclean doc | 188 | dist release: distclean doc |
186 | cd ..; \ | 189 | cd ..; \ |
187 | rm -rf busybox-$(VERSION); \ | 190 | rm -rf busybox-$(VERSION); \ |