diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-20 07:03:36 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-20 07:03:36 +0000 |
commit | 1926c972562b0815dc977741a75f3b2cac0fa738 (patch) | |
tree | 1f7509e6b8604061a688adb4d8299c3a4b79bdc9 /Makefile | |
parent | da699ee39118c1c6fcf48c9a7e59613c205ba19f (diff) | |
download | busybox-w32-1926c972562b0815dc977741a75f3b2cac0fa738.tar.gz busybox-w32-1926c972562b0815dc977741a75f3b2cac0fa738.tar.bz2 busybox-w32-1926c972562b0815dc977741a75f3b2cac0fa738.zip |
Fixed chmod and friends.
git-svn-id: svn://busybox.net/trunk/busybox@45 69ca8d6d-28ef-0310-b511-8ec308f3f277
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") | |||
5 | 5 | ||
6 | # Comment out the following to make a debuggable build | 6 | # Comment out the following to make a debuggable build |
7 | # Leave this off for production use. | 7 | # Leave this off for production use. |
8 | #DODEBUG=true | 8 | DODEBUG=true |
9 | 9 | ||
10 | #This will choke on a non-debian system | 10 | #This will choke on a non-debian system |
11 | ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'` | 11 | ARCH=`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'` |
@@ -19,7 +19,7 @@ ifeq ($(DODEBUG),true) | |||
19 | else | 19 | else |
20 | CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE | 20 | CFLAGS=-Wall -Os -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE |
21 | LDFLAGS= -s | 21 | LDFLAGS= -s |
22 | STRIP= strip --remove-section=.note --remove-section=.comment | 22 | STRIP= strip --remove-section=.note --remove-section=.comment $(PROG) |
23 | endif | 23 | endif |
24 | 24 | ||
25 | ifndef $(prefix) | 25 | ifndef $(prefix) |
@@ -36,7 +36,7 @@ all: busybox links | |||
36 | 36 | ||
37 | busybox: $(OBJECTS) | 37 | busybox: $(OBJECTS) |
38 | $(CC) $(LDFLAGS) -o $(PROG) $(OBJECTS) $(LIBRARIES) | 38 | $(CC) $(LDFLAGS) -o $(PROG) $(OBJECTS) $(LIBRARIES) |
39 | $(STRIP) $(PROG) | 39 | $(STRIP) |
40 | 40 | ||
41 | links: | 41 | links: |
42 | - ./busybox.mkll | sort >busybox.links | 42 | - ./busybox.mkll | sort >busybox.links |