summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-06-19 14:33:11 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-06-19 14:33:11 +0000
commitec048f60240f5e5e7b5d5f08de4fda5c31e51595 (patch)
treea32a7ee3a12bef9898b5f47b8fdb6027564cae17 /tools
parentea0d06fa3eea3aa8e0f1e91fe156eb476fa14979 (diff)
downloadrockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.tar.gz
rockbox-ec048f60240f5e5e7b5d5f08de4fda5c31e51595.zip
Stripped off needless things
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1084 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile20
1 files changed, 2 insertions, 18 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 54414be51c..92f621f51e 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -6,10 +6,9 @@
6# \/ \/ \/ \/ \/ 6# \/ \/ \/ \/ \/
7# $Id$ 7# $Id$
8# 8#
9CFLAGS := -O3 -s -ansi 9CFLAGS := -O -s -ansi
10 10
11TARGETS := scramble descramble sh2d \ 11TARGETS := scramble descramble sh2d
12 scramble.static.bz2 descramble.static.bz2 sh2d.static.bz2
13 12
14all: $(TARGETS) 13all: $(TARGETS)
15 14
@@ -21,18 +20,3 @@ sh2d: sh2d.c
21 20
22clean: 21clean:
23 rm -f $(TARGETS) *~ 22 rm -f $(TARGETS) *~
24
25descramble.static.bz2: descramble.c
26 $(CC) -static $(CFLAGS) -o descramble.static $<
27 bzip2 -f descramble.static
28 chmod a+r descramble.static.bz2
29
30scramble.static.bz2: scramble.c
31 $(CC) -static $(CFLAGS) -o scramble.static $<
32 bzip2 -f scramble.static
33 chmod a+r scramble.static.bz2
34
35sh2d.static.bz2: sh2d.c
36 $(CC) -static $(CFLAGS) -o sh2d.static $<
37 bzip2 -f sh2d.static
38 chmod a+r sh2d.static.bz2