scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0105-include.sh (259B)


      1 #!/bin/sh
      2 
      3 trap 'rm -f $tmp1 $tmp2' EXIT INT TERM HUP
      4 
      5 tmp1=tmp1.$$
      6 tmp2=tmp2.$$
      7 
      8 cat > $tmp1 <<EOF
      9 /usr/local/include
     10 EOF
     11 
     12 scc make -f - <<'EOF' > $tmp2 2>&1
     13 prefix = /usr/local
     14 includedir = ${prefix}/include
     15 
     16 all:
     17 	@echo $(includedir)
     18 EOF
     19 
     20 diff $tmp1 $tmp2