⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testmake

📁 汇编源代码大全4
💻
字号:
#CFLAGS = -c -AS -Gsw -Oas -W2 -Zpe /G2
#AFLAGS = /DmemS=1
#LFLAGS = /ALIGN:16

CFLAGS = -c -AS -Gsw -Od -W2 -Zipe -DDEBUG /G2
AFLAGS = /Zi /DmemS=1 /DDEBUG
LFLAGS = /CO /ALIGN:16

test.exe: test.obj test2.obj test.def test.res toolhelp.lib
	link $(LFLAGS) @<<
		test test2
		test.exe
		test.map/map,
		TOOLHELP.LIB SLIBCEW.LIB LIBW.LIB/NOE/NOD
		test.def
<<
	rc -t test.res test.exe
	mapsym test.map

.c.obj:
	cl $(CFLAGS) $*.c

.asm.obj:
	masm $(AFLAGS) $*.asm;

.rc.res:
	rc -r $*.rc

⌨️ 快捷键说明

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