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 dd6cc0cfd7..1c9771adb6 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 convbdf 11TARGETS := scramble descramble sh2d bmp2rb convbdf generate_rocklatin
12 12
13all: $(TARGETS) 13all: $(TARGETS)
14 14
@@ -24,6 +24,9 @@ bmp2rb: bmp2rb.c
24convbdf: convbdf.c 24convbdf: convbdf.c
25 $(CC) -g $+ -o $@ 25 $(CC) -g $+ -o $@
26 26
27generate_rocklatin: generate_rocklatin.c ../firmware/drivers/lcd-player-charset.c
28 $(CC) -DHAVE_LCD_CHARCELLS -I../firmware/ -g $+ -o $@
29
27clean: 30clean:
28 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ 31 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
29 32