summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-31 08:38:35 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-31 08:38:35 +0000
commit45abe619cd72e65ee8515a6b581fccb9e0230b59 (patch)
treecf706572bd13b60bce82ab3b9b0ee5ad596068fc
parentc38ccba483397ac39646202dbf4a9cab5a80cc18 (diff)
downloadrockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.tar.gz
rockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.zip
target builds must run make in firmware AND apps
this script now creates an archos subdir when creating a simulator build env git-svn-id: svn://svn.rockbox.org/rockbox/trunk@846 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index f60b4bfc16..edf47e6b9e 100755
--- a/tools/configure
+++ b/tools/configure
@@ -70,6 +70,14 @@ clean:
70EOF 70EOF
71 71
72echo "Created Makefile" 72echo "Created Makefile"
73
74if [ -d "archos" ]; then
75 echo "sub directory archos already present"
76else
77 mkdir archos
78 echo "created an archos subdirectory for simulating the hard disk"
79fi
80
73} 81}
74 82
75if [ "$target" = "--help" -o \ 83if [ "$target" = "--help" -o \
@@ -224,7 +232,7 @@ THISDIR="@PWD@"
224 232
225.PHONE: firmware apps 233.PHONE: firmware apps
226 234
227all: apps 235all: firmware apps
228 236
229firmware: 237firmware:
230 make -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) 238 make -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR)