0045-comment.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
---
0045-comment.sh (264B)
---
1 #!/bin/sh
2
3 trap 'rm -f $tmp1' EXIT
4 trap 'exit 1 ' HUP INT TERM
5
6 tmp1=tmp1.$$
7
8 $EXEC scc make -f - target1 <<EOF > $tmp1 2>&1
9 #esto es un comentario \
10 target1: ; echo hello
11 target2: ; echo bye
12 EOF
13
14 diff $tmp1 - <<EOF
15 make: error: don't know how to make target1
16 EOF