diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-15 17:33:30 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-15 17:33:30 +0000 |
commit | 68852f97ac9a68c6097e777339e0463a5e11c9eb (patch) | |
tree | 59359f25ba4bd356c2dfce79735fb66db4bb4151 /Makefile | |
parent | 4657e97b6316ae1e9fe83a4a3309bc32894a440b (diff) | |
download | busybox-w32-68852f97ac9a68c6097e777339e0463a5e11c9eb.tar.gz busybox-w32-68852f97ac9a68c6097e777339e0463a5e11c9eb.tar.bz2 busybox-w32-68852f97ac9a68c6097e777339e0463a5e11c9eb.zip |
Updates
git-svn-id: svn://busybox.net/trunk/busybox@101 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,11 +34,11 @@ 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 |
36 | ifeq ($(DODEBUG),true) | 36 | ifeq ($(DODEBUG),true) |
37 | CFLAGS=-Wall -g -D_GNU_SOURCE -DDEBUG_INIT | 37 | CFLAGS+=-Wall -g -D_GNU_SOURCE -DDEBUG_INIT |
38 | STRIP= | 38 | STRIP= |
39 | LDFLAGS= | 39 | LDFLAGS= |
40 | else | 40 | else |
41 | CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE | 41 | CFLAGS+=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE |
42 | LDFLAGS= -s | 42 | LDFLAGS= -s |
43 | STRIP= strip --remove-section=.note --remove-section=.comment $(PROG) | 43 | STRIP= strip --remove-section=.note --remove-section=.comment $(PROG) |
44 | #Only staticly link when _not_ debugging | 44 | #Only staticly link when _not_ debugging |