📄 makefile
字号:
##############################################################################
##
## Makefile for Detours Test Programs.
##
## Detours for binary functions. Version 1.2. (Build 35)
##
## Written by Galen C. Hunt
## Copyright 1995-1999, Microsoft Corporation
##
## http://www.research.microsoft.com/sn/detours
##
CFLAGS=/W3 /Z7 /MTd /I..\..\include
##############################################################################
##
.SUFFIXES: .cpp .h .obj
.cpp.obj:
@$(CC) /nologo $(CFLAGS) /Fo$*.obj /c $(MAKEDIR)\$*.cpp
all: disas.exe
clean:
@-del /q *~ *.obj *.exe *.ilk *.pdb 2> nul
disas.exe : disas.cpp ..\..\lib\detours.lib
cl /W3 /Z7 /MTd /I..\..\include disas.cpp \
/link /libpath:..\..\lib detours.lib \
/subsystem:console /entry:WinMainCRTStartup
################################################################# End of File.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -