1@echo off
2rem buildwin.bat - build AWK under Windows NT using Visual C++.
3rem 22 Jan 1999 - Created by Dan Allen.
4rem
5rem If you delete the call to setlocal it will probably work under Win95/Win98 as well.
6
7setlocal 
8set cl=-w -Ox -QIfdiv- -nologo -link -nologo setargv.obj
9
10cl maketab.c -o maketab.exe
11maketab.exe > proctab.c
12cl -o awk.exe b.c main.c parse.c proctab.c tran.c lib.c run.c lex.c ytab.c missing95.c
13