alex a9b78e7d47 Progetti Linux
git-svn-id: svn://10.65.10.50/trunk@11985 c028cbd2-c16b-5b4b-a496-9718f37d4682
2004-04-21 21:21:13 +00:00

10 lines
566 B
Plaintext
Executable File

echo Compiling $1 into $2
TMPNAME=/tmp/msk$$.c
OUTNAME=/tmp/msk.$$
NAME=/tmp/msk$$.c
cat ../../include/lffiles.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