10 lines
561 B
Plaintext
10 lines
561 B
Plaintext
|
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
|
||
|
grep -v ^# $OUTNAME | grep -v "^[ ]*$" >$2
|
||
|
rm $TMPNAME $OUTNAME
|