summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/Makefile b/tools/Makefile
index f1e1f9c7d4..f30ab4d819 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -9,11 +9,11 @@
9CFLAGS := -O -ansi -g 9CFLAGS := -O -ansi -g
10LDFLAGS := -g 10LDFLAGS := -g
11 11
12TARGETS := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf \ 12CLEANALL := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf \
13 generate_rocklatin mkboot ipod_fw uclpack 13 generate_rocklatin mkboot ipod_fw uclpack
14 14
15all: $(TARGETS) 15all:
16 @echo "tools done" 16 @echo "Run make in your build directory!"
17 17
18scramble: scramble.o iriver.o 18scramble: scramble.o iriver.o
19descramble: descramble.o iriver.o 19descramble: descramble.o iriver.o
@@ -48,6 +48,6 @@ uclpack:
48 $(MAKE) -C ucl 48 $(MAKE) -C ucl
49 49
50clean: 50clean:
51 rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ 51 rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
52 $(MAKE) -C ucl clean 52 $(MAKE) -C ucl clean
53 53