summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 92f621f51e..9d47a1c762 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -8,7 +8,7 @@
8# 8#
9CFLAGS := -O -s -ansi 9CFLAGS := -O -s -ansi
10 10
11TARGETS := scramble descramble sh2d 11TARGETS := scramble descramble sh2d bdf2ajf
12 12
13all: $(TARGETS) 13all: $(TARGETS)
14 14
@@ -18,5 +18,9 @@ descramble: descramble.c
18 18
19sh2d: sh2d.c 19sh2d: sh2d.c
20 20
21bdf2ajf: bdf2ajf.c
22 gcc -O -ansi $+ -o $@
23
21clean: 24clean:
22 rm -f $(TARGETS) *~ 25 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
26