diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-27 08:07:37 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-27 08:07:37 +0000 |
commit | 2a55deb138cc100d27e836d0f3ae949dbea70325 (patch) | |
tree | ab50e3256c7d85285c5d56663438040bdb3997b2 /contrib/one-true-awk/buildwin.bat | |
download | src-2a55deb138cc100d27e836d0f3ae949dbea70325.tar.gz src-2a55deb138cc100d27e836d0f3ae949dbea70325.zip |
Import the One True AWK, in the form of bwk's AWK Nov 15, 2000 release.vendor/one-true-awk/20001115
Notes
Notes:
svn path=/vendor/one-true-awk/dist/; revision=85587
svn path=/vendor/one-true-awk/20001115/; revision=85589; tag=vendor/one-true-awk/20001115
Diffstat (limited to 'contrib/one-true-awk/buildwin.bat')
-rw-r--r-- | contrib/one-true-awk/buildwin.bat | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/one-true-awk/buildwin.bat b/contrib/one-true-awk/buildwin.bat new file mode 100644 index 000000000000..77513429e463 --- /dev/null +++ b/contrib/one-true-awk/buildwin.bat @@ -0,0 +1,12 @@ +@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
|