diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-02-29 21:49:22 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-02-29 21:49:22 +0000 |
commit | 7c4b2f3fe5cb6b9a5c6bd089c18279c5ce29dc21 (patch) | |
tree | e5262e24142add93b66f923ec59c381c0edf2485 /Makefile | |
parent | a51ecdd9e4025d072d2737d6bea8a1d03bc74274 (diff) |
Minor makefile and todo updates
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# PROG := busybox +PROG := busybox VERSION := 0.43 BUILDTIME := $(shell TZ=GMT date "+%Y%m%d-%H%M") @@ -77,7 +77,7 @@ ifeq ($(DODEBUG),true) else CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE LDFLAGS = -s - STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment + STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) #Only staticly link when _not_ debugging ifeq ($(DOSTATIC),true) LDFLAGS += --static @@ -101,7 +101,7 @@ all: busybox busybox.links busybox: $(OBJECTS) $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) - $(STRIP) $@ + $(STRIP) busybox.links: busybox.def.h - ./busybox.mkll | sort >$@ |