makefile

来自「com编程」· 代码 · 共 21 行

TXT
21
字号
!include <ntwin32.mak>

INCLUDE=.;$(INCLUDE)


all: aptsur.exe

# note: SP2 SDK patch did not contain a definition of IID_ISurrogate
#      The library surruuid.lib included in this directory contains
#      this GUID. When UUID.LIB is updated, remove surruuid.lib from 
#      the arguments to link

aptsur.exe: CSTA.obj CustomSurrogate.obj CCOW.obj CSurrogate.obj 
  $(link) $(linkdebug) $(guiflags) -machine:$(CPU) -out:$*.exe $** surruuid.lib $(olelibs)

.cpp.obj:
    $(cc) -GX $(cdebug) -W3 -c -D_WIN32_WINNT=0x402 -D_$(CPU)_=1 $(cvars) $*.cpp

clean:
	del *.obj aptsur.exe

⌨️ 快捷键说明

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