termw16m.mak

来自「CHAPT09TERMW16.CPP 16-Bit test program f」· MAK 代码 · 共 40 行

MAK
40
字号
# ********************** START OF TERMW16M.MAK **********************
#
# This is one of two make files for the Win16 test program.
# This version builds the project using Microsoft C++. Build
# the file with the following command:
#
#          Microsoft : nmake -f termw16m.mak
#
# To build using Borland C++, use TERMW16B.MAK
#

CC = cl /W3 /AM /GA /I..\common /I..\common16

.cpp.obj:
  $(CC) -c /W3 /AM /GA $<

termw16.exe : rs232.obj termw16.obj win16.obj
	echo >NUL @<<termw16.CRF
termw16 +
win16 +
rs232
termw16
termw16
oldnames libw commdlg shell olecli olesvr mlibcew
termw16.def;
<<
	link /NOLOGO /ONERROR:NOEXE /NOD /PACKC:61440 /ALIGN:16 @termw16.CRF
	$(RC) $(RESFLAGS) $@


rs232.obj : ..\common\rs232.cpp
	$(CC) -c ..\common\rs232.cpp

win16.obj : ..\common16\win16.cpp
	$(CC) -c ..\common16\win16.cpp


# ********************** END OF TERMW16M.MAK **********************

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?