aboutsummaryrefslogtreecommitdiffstats
path: root/pc/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'pc/make.bat')
-rw-r--r--pc/make.bat48
1 files changed, 22 insertions, 26 deletions
diff --git a/pc/make.bat b/pc/make.bat
index 99d76512..a416cadc 100644
--- a/pc/make.bat
+++ b/pc/make.bat
@@ -3,6 +3,7 @@ REM
REM *** This has only been using MSC 5.1 ***
REM
REM Written by Arnold Robbins, May 1991
+REM Modified by Scott Deifik, July, 1992
REM Based on earlier makefile for dos
REM
REM Copyright (C) 1986, 1988, 1989, 1991 the Free Software Foundation, Inc.
@@ -24,32 +25,27 @@ REM You should have received a copy of the GNU General Public License
REM along with GAWK; see the file COPYING. If not, write to
REM the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
REM
-REM debug flags: DEBUG=#-DDEBUG #-DFUNC_TRACE -DMEMDEBUG
-REM DEBUGGER= #-Zi
-REM
-cl -c -AL -Oalt array.c
-cl -c -AL -Oalt awktab.c
-cl -c -AL -Oalt builtin.c
-cl -c -AL -Oalt dfa.c
-cl -c -AL -Oalt eval.c
-cl -c -AL -Oalt field.c
-cl -c -AL -Oalt io.c
-cl -c -AL -Oalt iop.c
-cl -c -AL -Oalt main.c
-cl -c -AL -Oalt missing.c
-cl -c -AL -Oalt msg.c
-cl -c -AL -Oalt node.c
-cl -c -AL -Oalt popen.c
-cl -c -AL -Oalt re.c
-cl -c -AL -Oalt version.c
-REM
-REM this kludge necessary because MSC 5.1 compiler bombs with -Oail (where
-REM -Ox == "-Oailt -Gs")
-REM
+REM compile debug flags: -DDEBUG -DFUNC_TRACE -DMEMDEBUG -Zi -Od
+REM
+REM
+cl -c -AL array.c
+cl -c -AL awktab.c
+cl -c -AL builtin.c
+cl -c -AL dfa.c
+cl -c -AL eval.c
+cl -c -AL field.c
+cl -c -AL io.c
+cl -c -AL iop.c
+cl -c -AL main.c
+cl -c -AL missing.c
+cl -c -AL msg.c
+cl -c -AL node.c
+cl -c -AL popen.c
+cl -c -AL re.c
REM You can ignore the warnings you will get
-cl -c -AL -Ot regex.c
+cl -c -AL regex.c
+cl -c -AL version.c
REM
-REM I'm not sure what this is for. It was commented out
-REM LINKFLAGS= /CO /NOE /NOI /st:0x1800
+REM link debug flags: /CO /NOE /NOI /st:30000
REM
-link @names.lnk,gawk.exe /E /FAR /PAC /NOE /NOI /st:0x1800;
+link @names.lnk,gawk.exe /NOE /NOI /st:30000;