# This is a sample `make.ini' file for NDMAKE. You will probably want # to customize it for your system. # If .NOIG is used, it *must* be the first directive in this file. #.NOIG # The order to search for rules and files is specified by .SUFFIXES .SUFFIXES : .obj .for .pkg .pc .sim .asm # The directory NDMAKE uses for temporary file MAKE_TMP= $(TMP) # Macros for compilers and assemblers. AS = masm FOR_FLAGS = # DEFAULT RULES # # ASM -> OBJ using MASM. .asm.obj: ${AS} /MX /ML $<; # FOR -> OBJ using Ryan McFarland Fortran. .for.obj: rmfort $< ${FOR_FLAGS} /Z /L /A /S > LIST.LST chkendif # PKG -> OBJ using Ryan McFarland Fortran. .pkg.obj: rmfort $< ${FOR_FLAGS} /Z /L /A /S > LIST.LST chkendif # PC -> OBJ using Ryan McFarland Fortran. .pc.obj: rmfort $< ${FOR_FLAGS} /Z /L /A /S > LIST.LST chkendif # SIM -> OBJ using Ryan McFarland Fortran. .sim.obj: rmfort $< ${FOR_FLAGS} /Z /L /A /S > LIST.LST chkendif # A universally useful target so "make clean" always works. clean: -(erase *.bak; erase *.map) chkdsk: chkdsk c: