diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-20 07:03:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-20 07:03:36 +0000 |
commit | ce8f3b99339fb954204329971ed25efc950fed26 (patch) | |
tree | 1f7509e6b8604061a688adb4d8299c3a4b79bdc9 /Makefile | |
parent | b9b421c186cf6a9e575770a1c5fb46b6bdd3424a (diff) | |
download | busybox-ce8f3b99339fb954204329971ed25efc950fed26.tar.gz |
Fixed chmod and friends.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,7 +5,7 @@ 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=true #This will choke on a non-debian system ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'` @@ -19,7 +19,7 @@ ifeq ($(DODEBUG),true) else CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE LDFLAGS= -s - STRIP= strip --remove-section=.note --remove-section=.comment + STRIP= strip --remove-section=.note --remove-section=.comment $(PROG) endif ifndef $(prefix) @@ -36,7 +36,7 @@ all: busybox links busybox: $(OBJECTS) $(CC) $(LDFLAGS) -o $(PROG) $(OBJECTS) $(LIBRARIES) - $(STRIP) $(PROG) + $(STRIP) links: - ./busybox.mkll | sort >busybox.links |