AUSAM/source/lex/maklex

echo make a new version of lex
mkdir newlex
cd newlex
ar x ../lexgen.a
yacc -o parser.y
ncc -i -O main.c y.tab.c sub1.c sub2.c header.c -ly -lS
strip a.out
cp a.out ../lex
rm *.o *.c *.y a.out edscript debscript
cd ..
rmdir newlex
echo new lex is made, result is in lex