summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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