aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-01 23:59:44 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-01 23:59:44 +0000
commit2f6c04f63c55a03366dfd5848f00bda664c9a90d (patch)
tree3e9c595c46a1032cc1bd4d20694c8a0edfd643f9 /Makefile
parentff719d663e49ab3abb8060ad93e62b160029f63b (diff)
downloadbusybox-2f6c04f63c55a03366dfd5848f00bda664c9a90d.tar.gz
Ha! Got init working.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index bcd62bf01..bdba57557 100644
--- a/Makefile
+++ b/Makefile
@@ -17,12 +17,12 @@
PROG=busybox
-VERSION=0.31
+VERSION=0.32
BUILDTIME=$(shell date "+%Y%m%d-%H%M")
# Comment out the following to make a debuggable build
# Leave this off for production use.
-DODEBUG=true
+DODEBUG=false
# If you want a static binary, turn this on. I can't think
# of many situations where anybody would ever want it static,
# but...
@@ -34,7 +34,7 @@ ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'`
# -D_GNU_SOURCE is needed because environ is used in init.c
ifeq ($(DODEBUG),true)
- CFLAGS=-Wall -g -D_GNU_SOURCE
+ CFLAGS=-Wall -g -D_GNU_SOURCE -DDEBUG_INIT
STRIP=
LDFLAGS=
else