summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
Diffstat (limited to 'tools/configure')
-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