another major rewrite - define_ -> def_, etc. (and it will get worse !)
[svn/Cll1h/.git] / tools / bake
index 3b15bcd4cd0fd069a99c01faddd6575ff8900f88..77ea78d68c8430ccf889b4e7d5568b21aa38b03c 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/bash
-CONF=/etc/bake.conf
+CONF="/etc/bake.conf"
 CLL1CC=`which gcc`
+CFLAGS="-std=c99 -Wall"
 EXE=`basename $1 .c`
 DEBUG=n
 
@@ -43,6 +44,6 @@ then
  done
 fi
 
-CMD="$CLL1CC $1 -o $EXE $LIBS"
+CMD="$CLL1CC $1 -o $EXE $CFLAGS $LIBS"
 echo "$CMD"
 $CMD
This page took 0.13647 seconds and 4 git commands to generate.