aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-20 21:57:11 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-20 21:57:11 +0000
commit51154bacbe34d160f089c4ab4bbb51766030233d (patch)
treed4cc96083ccdfb95c031f92aacfb1b3f8c08dc97 /Makefile
parent3950596e1e13d3593d06ab3cf1e48a07d5bd80c9 (diff)
downloadbusybox-w32-51154bacbe34d160f089c4ab4bbb51766030233d.tar.gz
busybox-w32-51154bacbe34d160f089c4ab4bbb51766030233d.tar.bz2
busybox-w32-51154bacbe34d160f089c4ab4bbb51766030233d.zip
Adjusted install.sh to use relative symlinks, and to optionally
create hardlinks. Added a makefile target to create hardlinks. -Erik
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); \