0014-nflag.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
---
0014-nflag.sh (213B)
---
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 Hello World!
10 Hello World!
11 EOF
12
13 scc make -nf test.mk print-hidden-hello > $tmp1 2>&1
14
15 diff $tmp1 $tmp2