summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-12-02 08:56:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-12-02 08:56:20 +0000
commitd7b5c5a3c0e74556316a95481cc7cc6f022baf7a (patch)
tree2b1d9f91333ecc906f4956d1e6e0b02fb2a76c70 /tools/Makefile
parentf0e733aed52590105b6a17130af5c26166eada6d (diff)
downloadrockbox-d7b5c5a3c0e74556316a95481cc7cc6f022baf7a.tar.gz
rockbox-d7b5c5a3c0e74556316a95481cc7cc6f022baf7a.zip
configure now sets what set of tools that a particular target build needs or
can use, and those tools only are built with 'make' or 'make tools'. Starting now, you should build tools from within your build directory instead of running make in the tools dir. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8127 a1c6a512-1295-4272-9138-f99709370657
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