Home
       0040-makefile.sh - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0040-makefile.sh (247B)
       ---
            1 #!/bin/sh
            2 
            3 trap 'rm -f $tmp1 $tmp2 makefile' EXIT INT QUIT TERM HUP
            4 
            5 tmp1=tmp1.$$
            6 tmp2=tmp2.$$
            7 
            8 cat > makefile <<EOF
            9 hello:
           10         @echo Hello World!, makefile!
           11 EOF
           12 
           13 cat > $tmp2 <<EOF
           14 Hello World!, makefile!
           15 EOF
           16 
           17 scc-make > $tmp1 2>&1
           18 
           19 diff $tmp1 $tmp2