aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-01 23:59:44 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-11-01 23:59:44 +0000
commita8a6e9fe458f3ce5df1b34259b27d4ff6e7d6430 (patch)
tree3e9c595c46a1032cc1bd4d20694c8a0edfd643f9 /Makefile
parent5edf9efe25318aeaa47229b97526244c26b86736 (diff)
downloadbusybox-w32-a8a6e9fe458f3ce5df1b34259b27d4ff6e7d6430.tar.gz
busybox-w32-a8a6e9fe458f3ce5df1b34259b27d4ff6e7d6430.tar.bz2
busybox-w32-a8a6e9fe458f3ce5df1b34259b27d4ff6e7d6430.zip
Ha! Got init working.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@70 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
17 17
18 18
19PROG=busybox 19PROG=busybox
20VERSION=0.31 20VERSION=0.32
21BUILDTIME=$(shell date "+%Y%m%d-%H%M") 21BUILDTIME=$(shell date "+%Y%m%d-%H%M")
22 22
23# Comment out the following to make a debuggable build 23# Comment out the following to make a debuggable build
24# Leave this off for production use. 24# Leave this off for production use.
25DODEBUG=true 25DODEBUG=false
26# If you want a static binary, turn this on. I can't think 26# If you want a static binary, turn this on. I can't think
27# of many situations where anybody would ever want it static, 27# of many situations where anybody would ever want it static,
28# but... 28# but...
@@ -34,7 +34,7 @@ ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'`
34 34
35# -D_GNU_SOURCE is needed because environ is used in init.c 35# -D_GNU_SOURCE is needed because environ is used in init.c
36ifeq ($(DODEBUG),true) 36ifeq ($(DODEBUG),true)
37 CFLAGS=-Wall -g -D_GNU_SOURCE 37 CFLAGS=-Wall -g -D_GNU_SOURCE -DDEBUG_INIT
38 STRIP= 38 STRIP=
39 LDFLAGS= 39 LDFLAGS=
40else 40else