summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 9d47a1c762..ba25001525 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 bdf2ajf 11TARGETS := scramble descramble sh2d bdf2ajf bmp2rb
12 12
13all: $(TARGETS) 13all: $(TARGETS)
14 14
@@ -21,6 +21,9 @@ sh2d: sh2d.c
21bdf2ajf: bdf2ajf.c 21bdf2ajf: bdf2ajf.c
22 gcc -O -ansi $+ -o $@ 22 gcc -O -ansi $+ -o $@
23 23
24bmp2rb: bmp2rb.c
25 gcc -DAPPLICATION_NAME=\"$@\" -g $+ -o $@
26
24clean: 27clean:
25 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ 28 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
26 29