diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-19 14:33:11 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-19 14:33:11 +0000 |
| commit | ec048f60240f5e5e7b5d5f08de4fda5c31e51595 (patch) | |
| tree | a32a7ee3a12bef9898b5f47b8fdb6027564cae17 | |
| parent | ea0d06fa3eea3aa8e0f1e91fe156eb476fa14979 (diff) | |
| download | rockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.zip rockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.tar.gz rockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.tar.bz2 rockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.tar.xz | |
Stripped off needless things
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1084 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/Makefile | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/tools/Makefile b/tools/Makefile index 54414be..92f621f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -6,10 +6,9 @@ # \/ \/ \/ \/ \/ # $Id$ # -CFLAGS := -O3 -s -ansi +CFLAGS := -O -s -ansi -TARGETS := scramble descramble sh2d \ - scramble.static.bz2 descramble.static.bz2 sh2d.static.bz2 +TARGETS := scramble descramble sh2d all: $(TARGETS) @@ -21,18 +20,3 @@ sh2d: sh2d.c clean: rm -f $(TARGETS) *~ - -descramble.static.bz2: descramble.c - $(CC) -static $(CFLAGS) -o descramble.static $< - bzip2 -f descramble.static - chmod a+r descramble.static.bz2 - -scramble.static.bz2: scramble.c - $(CC) -static $(CFLAGS) -o scramble.static $< - bzip2 -f scramble.static - chmod a+r scramble.static.bz2 - -sh2d.static.bz2: sh2d.c - $(CC) -static $(CFLAGS) -o sh2d.static $< - bzip2 -f sh2d.static - chmod a+r sh2d.static.bz2 |