9f36c7f497
In case you're wondering, the gcc-2.7.2.1 import uses this to generate code. The size of the generated code is bigger than the entire bison release, making this a saving. The bison doc is pretty good apparently.
29 lines
904 B
Batchfile
29 lines
904 B
Batchfile
@echo off
|
|
echo Configuring bison for go32
|
|
rem This batch file assumes a unix-type "sed" program
|
|
|
|
echo # Makefile generated by "configure.bat"> Makefile
|
|
echo all.dos : bison >> Makefile
|
|
|
|
if exist config.sed del config.sed
|
|
|
|
echo "s/@srcdir@/./g ">> config.sed
|
|
echo "s/@CC@/gcc/g ">> config.sed
|
|
echo "s/@INSTALL@//g ">> config.sed
|
|
echo "s/@INSTALL_PROGRAM@//g ">> config.sed
|
|
echo "s/@INSTALL_DATA@//g ">> config.sed
|
|
echo "s/@DEFS@/-DHAVE_STRERROR/g ">> config.sed
|
|
echo "s/@LIBS@//g ">> config.sed
|
|
echo "s/@ALLOCA@//g ">> config.sed
|
|
|
|
echo "/^bison[ ]*:/,/-o/ { ">> config.sed
|
|
echo " s/ \$(CC)/ >bison.rf/ ">> config.sed
|
|
echo " /-o/ a\ ">> config.sed
|
|
echo " $(CC) @bison.rf ">> config.sed
|
|
echo "} ">> config.sed
|
|
|
|
sed -e "s/^\"//" -e "s/\"$//" -e "s/[ ]*$//" config.sed > config2.sed
|
|
sed -f config2.sed Makefile.in >> Makefile
|
|
del config.sed
|
|
del config2.sed
|