summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-23 09:58:44 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-23 09:58:44 +0000
commitfcf56299f2aa4259f2e5d79c3abe89d3692530a3 (patch)
tree3dacfe9c82d087f2c4a7343b284c0779e495115c
parente0c12aff3b78ff93607648f49a06128b450bf07e (diff)
downloadrockbox-fcf56299f2aa4259f2e5d79c3abe89d3692530a3.tar.gz
rockbox-fcf56299f2aa4259f2e5d79c3abe89d3692530a3.zip
pass better variables
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@661 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure8
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/configure b/tools/configure
index b65dc03295..282b625b9b 100755
--- a/tools/configure
+++ b/tools/configure
@@ -63,7 +63,7 @@ option=`input`;
63 63
64case $option in 64case $option in
65 [Yy]) 65 [Yy])
66 debug="-DDEBUG" 66 debug="DEBUG=1"
67 ;; 67 ;;
68 *) 68 *)
69 debug="" 69 debug=""
@@ -126,11 +126,9 @@ DEBUG=@DEBUG@
126TARGET=@TARGET@ 126TARGET=@TARGET@
127THISDIR="@PWD@" 127THISDIR="@PWD@"
128 128
129CFLAGS="\$(DEBUG) \$(TARGET)"
130
131all: 129all:
132 make -C \$(FIRMDIR) CFLAGS=\$(CFLAGS) OBJDIR=\$(THISDIR) 130 make -C \$(FIRMDIR) TARGET=\$(TARGET) $(DEBUG) OBJDIR=\$(THISDIR)
133 make -C \$(APPSDIR) CFLAGS=\$(CFLAGS) OBJDIR=\$(THISDIR) 131 make -C \$(APPSDIR) TARGET=\$(TARGET) $(DEBUG) OBJDIR=\$(THISDIR)
134 132
135EOF 133EOF
136 134