1# vestigial makefile for microsoft c compiler on WinXX
2# run with nmake -f makefile.win
3# based on buildwin.bat
4
5awk95.exe:
6	set cl=-w -Ox -QIfdiv- -nologo -link -nologo setargv.obj
7	cl maketab.c -o maketab.exe
8	.\maketab.exe > proctab.c
9	cl -o awk95.exe b.c main.c parse.c proctab.c tran.c lib.c run.c lex.c ytab.c missing95.c
10