diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-31 08:38:35 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-31 08:38:35 +0000 |
| commit | 45abe619cd72e65ee8515a6b581fccb9e0230b59 (patch) | |
| tree | cf706572bd13b60bce82ab3b9b0ee5ad596068fc /tools | |
| parent | c38ccba483397ac39646202dbf4a9cab5a80cc18 (diff) | |
| download | rockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.zip rockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.tar.gz rockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.tar.bz2 rockbox-45abe619cd72e65ee8515a6b581fccb9e0230b59.tar.xz | |
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
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/configure | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index f60b4bf..edf47e6 100755 --- a/tools/configure +++ b/tools/configure @@ -70,6 +70,14 @@ clean: EOF echo "Created Makefile" + +if [ -d "archos" ]; then + echo "sub directory archos already present" +else + mkdir archos + echo "created an archos subdirectory for simulating the hard disk" +fi + } if [ "$target" = "--help" -o \ @@ -224,7 +232,7 @@ THISDIR="@PWD@" .PHONE: firmware apps -all: apps +all: firmware apps firmware: make -C \$(FIRMDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) |