aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-21 21:53:58 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-21 21:53:58 +0000
commite90f4045afbcdcae81c417fffa635b3a5ab9166b (patch)
tree0f515205daab08e90ee59594b76a8964551e7459 /Makefile
parent1d1d95051a288b6bf64498aac9fb20047f384b7d (diff)
downloadbusybox-e90f4045afbcdcae81c417fffa635b3a5ab9166b.tar.gz
Some more updates and such...
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index eea01d383..8332583cb 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@
#
PROG := busybox
-VERSION := 0.43
+VERSION := 0.44
BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
export VERSION
@@ -31,8 +31,9 @@ DODEBUG = false
# If you want a static binary, turn this on.
DOSTATIC = false
-# This will choke on a non-debian system
-ARCH =`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'`
+# Figure out what arch we are on (not used at the moment)
+ARCH := $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/')
+
CC = gcc
@@ -100,7 +101,7 @@ all: busybox busybox.links docs
busybox: $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
$(STRIP)
-
+
docs:
$(MAKE) -C docs