aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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 @@
19# 19#
20 20
21PROG := busybox 21PROG := busybox
22VERSION := 0.43 22VERSION := 0.44
23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") 23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24export VERSION 24export VERSION
25 25
@@ -31,8 +31,9 @@ DODEBUG = false
31# If you want a static binary, turn this on. 31# If you want a static binary, turn this on.
32DOSTATIC = false 32DOSTATIC = false
33 33
34# This will choke on a non-debian system 34# Figure out what arch we are on (not used at the moment)
35ARCH =`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'` 35ARCH := $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/')
36
36 37
37CC = gcc 38CC = gcc
38 39
@@ -100,7 +101,7 @@ all: busybox busybox.links docs
100busybox: $(OBJECTS) 101busybox: $(OBJECTS)
101 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) 102 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
102 $(STRIP) 103 $(STRIP)
103 104
104docs: 105docs:
105 $(MAKE) -C docs 106 $(MAKE) -C docs
106 107