summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 4b72b4c638..50d05abda8 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -11,7 +11,7 @@ LDFLAGS := -g
11 11
12CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ 12CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \
13 generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database \ 13 generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database \
14 lngdump telechips gigabeats mktccboot mknkboot 14 lngdump telechips gigabeats mktccboot mknkboot rbspeexenc
15 15
16all: 16all:
17 @echo "Run make in your build directory!" 17 @echo "Run make in your build directory!"
@@ -76,6 +76,9 @@ player_unifont: player_unifont.c ../firmware/drivers/lcd-charset-player.c
76uclpack: 76uclpack:
77 $(SILENT)$(MAKE) -C ucl 77 $(SILENT)$(MAKE) -C ucl
78 78
79rbspeexenc:
80 $(SILENT)$(MAKE) -C rbspeex
81
79wavtrim: wavtrim.c 82wavtrim: wavtrim.c
80 $(SILENT)$(CC) -g $+ -o $@ 83 $(SILENT)$(CC) -g $+ -o $@
81 84
@@ -86,4 +89,5 @@ clean:
86 @echo "Cleaning tools" 89 @echo "Cleaning tools"
87 $(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ 90 $(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
88 $(SILENT)$(MAKE) -C ucl clean 91 $(SILENT)$(MAKE) -C ucl clean
92 $(SILENT)$(MAKE) -C rbspeex clean
89 93