summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-09-18 15:41:09 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-09-18 15:41:09 +0000
commitd2d2ecc310614e70d813779582b2079fcbfca35f (patch)
treef67b8089dcb200be99aa085f5a5ab84d91071248 /tools/Makefile
parent8dda668d10607a1c2c8facb924a49cef8b295fcb (diff)
downloadrockbox-d2d2ecc310614e70d813779582b2079fcbfca35f.tar.gz
rockbox-d2d2ecc310614e70d813779582b2079fcbfca35f.zip
build the convbdf tool too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2330 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 5102261e6d..dd6cc0cfd7 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 bmp2rb 11TARGETS := scramble descramble sh2d bmp2rb convbdf
12 12
13all: $(TARGETS) 13all: $(TARGETS)
14 14
@@ -19,7 +19,10 @@ descramble: descramble.c
19sh2d: sh2d.c 19sh2d: sh2d.c
20 20
21bmp2rb: bmp2rb.c 21bmp2rb: bmp2rb.c
22 gcc -DAPPLICATION_NAME=\"$@\" -g $+ -o $@ 22 $(CC) -DAPPLICATION_NAME=\"$@\" -g $+ -o $@
23
24convbdf: convbdf.c
25 $(CC) -g $+ -o $@
23 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 *~