diff options
| author | Erik Andersen <andersen@codepoet.org> | 2000-04-21 21:53:58 +0000 |
|---|---|---|
| committer | Erik Andersen <andersen@codepoet.org> | 2000-04-21 21:53:58 +0000 |
| commit | e90f4045afbcdcae81c417fffa635b3a5ab9166b (patch) | |
| tree | 0f515205daab08e90ee59594b76a8964551e7459 /Makefile | |
| parent | 1d1d95051a288b6bf64498aac9fb20047f384b7d (diff) | |
| download | busybox-w32-e90f4045afbcdcae81c417fffa635b3a5ab9166b.tar.gz busybox-w32-e90f4045afbcdcae81c417fffa635b3a5ab9166b.tar.bz2 busybox-w32-e90f4045afbcdcae81c417fffa635b3a5ab9166b.zip | |
Some more updates and such...
-Erik
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
| @@ -19,7 +19,7 @@ | |||
| 19 | # | 19 | # |
| 20 | 20 | ||
| 21 | PROG := busybox | 21 | PROG := busybox |
| 22 | VERSION := 0.43 | 22 | VERSION := 0.44 |
| 23 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") | 23 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") |
| 24 | export VERSION | 24 | export 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. |
| 32 | DOSTATIC = false | 32 | DOSTATIC = 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) |
| 35 | ARCH =`uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/'` | 35 | ARCH := $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/') |
| 36 | |||
| 36 | 37 | ||
| 37 | CC = gcc | 38 | CC = gcc |
| 38 | 39 | ||
| @@ -100,7 +101,7 @@ all: busybox busybox.links docs | |||
| 100 | busybox: $(OBJECTS) | 101 | busybox: $(OBJECTS) |
| 101 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) | 102 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) |
| 102 | $(STRIP) | 103 | $(STRIP) |
| 103 | 104 | ||
| 104 | docs: | 105 | docs: |
| 105 | $(MAKE) -C docs | 106 | $(MAKE) -C docs |
| 106 | 107 | ||
