4683d6b713
Add one-true-awk as the new awk that installs to /usr/bin/awk.
12 lines
426 B
Batchfile
12 lines
426 B
Batchfile
@echo off
|
|
rem buildwin.bat - build AWK under Windows NT using Visual C++.
|
|
rem 22 Jan 1999 - Created by Dan Allen.
|
|
rem
|
|
rem If you delete the call to setlocal it will probably work under Win95/Win98 as well.
|
|
|
|
setlocal
|
|
set cl=-w -Ox -QIfdiv- -nologo -link -nologo setargv.obj
|
|
|
|
cl maketab.c -o maketab.exe
|
|
maketab.exe > proctab.c
|
|
cl -o awk.exe b.c main.c parse.c proctab.c tran.c lib.c run.c lex.c ytab.c missing95.c
|