makefile

来自「微软提供的截取Win32 API函数的开发包和例子detours-src-1.2」· 代码 · 共 24 行

TXT
24
字号
##############################################################################
##
##  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
##

all:	dtest.exe

clean:
	@-del /q *~ *.obj *.exe *.ilk *.pdb 2> nul

dtest.exe : dtest.cpp
	cl /MTd /Z7 /I..\..\include dtest.cpp \
		/link /libpath:..\..\lib detours.lib  \
		/subsystem:console /entry:WinMainCRTStartup

################################################################# End of File.

⌨️ 快捷键说明

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