a9b78e7d47
git-svn-id: svn://10.65.10.50/trunk@11985 c028cbd2-c16b-5b4b-a496-9718f37d4682
10 lines
563 B
Plaintext
Executable File
10 lines
563 B
Plaintext
Executable File
echo Compiling $1 into $2
|
|
TMPNAME=/tmp/msk$$.c
|
|
OUTNAME=/tmp/msk.$$
|
|
NAME=/tmp/msk$$.c
|
|
cat ../../include/uml.h $1 >$TMPNAME
|
|
INC="-iprefix ../../ -iwithprefix include -iwithprefix ab -iwithprefix ba -iwithprefix ce -iwithprefix cg -iwithprefix cm -iwithprefix db -iwithprefix dl -iwithprefix ef -iwithprefix in -iwithprefix m770 -iwithprefix mg -iwithprefix mr -iwithprefix or -iwithprefix pr -iwithprefix sc -iwithprefix sv -iwithprefix ve -iwithprefix xvaga"
|
|
gcc -E $INC -o $OUTNAME $TMPNAME 2>&1
|
|
grep -v ^# $OUTNAME | grep -v "^[ ]*$" >$2
|
|
rm $TMPNAME $OUTNAME
|