From d7b5c5a3c0e74556316a95481cc7cc6f022baf7a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 2 Dec 2005 08:56:20 +0000 Subject: 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 --- tools/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index f1e1f9c7d4..f30ab4d819 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -9,11 +9,11 @@ CFLAGS := -O -ansi -g LDFLAGS := -g -TARGETS := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf \ +CLEANALL := scramble descramble iaudio sh2d bmp2rb rdf2binary convbdf \ generate_rocklatin mkboot ipod_fw uclpack -all: $(TARGETS) - @echo "tools done" +all: + @echo "Run make in your build directory!" scramble: scramble.o iriver.o descramble: descramble.o iriver.o @@ -48,6 +48,6 @@ uclpack: $(MAKE) -C ucl clean: - rm -f $(TARGETS) $(shell for f in $(TARGETS) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ + rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ $(MAKE) -C ucl clean -- cgit v1.2.3