0013-nflag.sh - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0013-nflag.sh (254B)
       ---
            1 #!/bin/sh
            2 
            3 trap 'rm -f $tmp1 $tmp2' EXIT QUIT INT HUP TERM
            4 
            5 tmp1=tmp1.$$
            6 tmp2=tmp2.$$
            7 
            8 cat <<EOF > $tmp2
            9 echo -n
           10 no-valid-program
           11 correct
           12 EOF
           13 
           14 (set -e
           15  MAKEFLAGS=-n scc make -f test.mk print-makeflags error
           16  echo correct) > $tmp1 2>&1
           17 
           18 diff $tmp1 $tmp2