hello.mak

来自「这是一些例程」· MAK 代码 · 共 23 行

MAK
23
字号


# Set this macro to 'VCNT' to use the Visual C++ tools.
# Set it to anything else to use the Win32 SDK tools.

TOOLS = VCNT

!IF "$(TOOLS)" == "VCNT"

LINK = link

!ELSE

LINK = link32

!ENDIF


all:
      ml /c /coff hello.asm
      $(LINK) -subsystem:console -entry:_start -out:hello.exe \
	 hello.obj kernel32.lib

⌨️ 快捷键说明

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