tst.mak

来自「GARMIN的GPS信息解释器」· MAK 代码 · 共 30 行

MAK
30
字号
INCLUDES= ..\inc\nmeap.h ..\inc\nmeap_def.h
CSRC    = nmeap01.c
LIBNAME = ..\lib\libnmeap.lib

# build everything
all : test1.exe test2.exe test3.exe wingps.exe 

test1.exe : test1.c $(LIBNAME)
	cl /DNDEBUG /c /I..\inc test1.c
	link /OUT:test1.exe test1.obj $(LIBNAME) 
	
test2.exe : test2.c $(LIBNAME)
	cl /DNDEBUG /c /I..\inc test2.c
	link /OUT:test2.exe test2.obj $(LIBNAME)
	
test3.exe : test3.c $(LIBNAME)
	cl /DNDEBUG /c /I..\inc test3.c
	link /OUT:test3.exe test3.obj $(LIBNAME)
	
wingps.exe : wingps.c $(LIBNAME)
	cl /DNDEBUG /c /I..\inc wingps.c
	link /OUT:wingps.exe wingps.obj $(LIBNAME)

# erase all intermediate and output files
clean :
	-erase *.obj
	-erase *.exe


⌨️ 快捷键说明

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