total-carnage/MAKE.INI

26 lines
957 B
INI
Raw Permalink Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

.SUFFIXES : .EXE .OBJ .LIN .DEC .C .ASM .FOR .RAW .OUT
# .SUFFIXES:
RAM = d:\
MAKE_TMP = ${RAM}
LINK = \SYS\LINK
CC = \SYS\MSC
CFLAGS = /G2 /ZI /OD # G2 CODE FOR 80286
# ZI FOR CODEVIEW
# OD OPTIMIZATION OFF
LFLAGS = /CO /NOI # CO FOR CODEVIEW
# NOI DISTINGUISH UC/LC LETTERS
DECLFLAGS = /W /ZG # ZG GENERERATE FUNCTION DECLS
# W SUPPRESS COMPILER WARNINGS
LINTFLAGS = /ZS /W2 /DLINT_ARGS
# ZS SYNTAX CHECK ONLY
# W2 FULL WARNINGS
.asm.obj:
@ ECHO *----assembling----$*.ASM(0)
d:\GSPA $* d:\$*.obj d:\$*.lst -h -l -v10
COPY d:\$*.OBJ
CRNCHLST d:\$*.LST
COPY d:\$*.LST
DEL D:\$*.LST