summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-07-10 11:52:42 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-07-10 11:52:42 +0000
commit4b392cd105b0904790c0f7c694c382096963fe42 (patch)
tree53a8e68ca19cc7532e11cf5766d561051bc94645 /firmware/Makefile
parent067262dbf09d63fb645d1c2e67d225325b6854c9 (diff)
downloadrockbox-4b392cd105b0904790c0f7c694c382096963fe42.tar.gz
rockbox-4b392cd105b0904790c0f7c694c382096963fe42.zip
Added dependency to the tools dir, so it's automatically built with the rest. Updated build docs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3825 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index c80d20cdb5..916a1a4094 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -55,7 +55,10 @@ ifndef TOOLSDIR
55 TOOLSDIR=../tools 55 TOOLSDIR=../tools
56endif 56endif
57 57
58all: $(OUTPUT) $(EXTRA_TARGETS) 58all: $(TOOLSDIR)/convbdf $(OUTPUT) $(EXTRA_TARGETS)
59
60$(TOOLSDIR)/convbdf:
61 $(MAKE) -C $(TOOLSDIR)
59 62
60$(OUTPUT): $(OBJS) 63$(OUTPUT): $(OBJS)
61 $(AR) ruv $@ $+ 64 $(AR) ruv $@ $+