* add svn ignore
[ezgdi.git] / contrib / Makefile
blob654b2752545cac33db7afaeaf3da6ddc163224e6
1 BIN=easyhook-localhook.exe rdtsc.exe apitracer.dll beep.exe msgbeep.dll
3 CPPFLAGS=/DUNICODE /D_UNICODE /DDEBUG /D_DEBUG /DEBUG /MTd /EHsc /W3 /I..\..\easyhook-2.6 /I..\..\detours\include
4 LINKFLAGS=/LIBPATH:..\..\easyhook-2.6 /LIBPATH:..\..\detours\lib detours.lib detoured.lib easyhook32.lib user32.lib advapi32.lib usp10.lib gdi32.lib /DEBUG
6 all: $(BIN)
8 .cpp.exe:
9 $(CC) $(CPPFLAGS) $** /link $(LINKFLAGS)
10 mt.exe -manifest $@.manifest -outputresource:$@;1
12 .cpp.dll:
13 $(CC) $(CPPFLAGS) $** /link /out:$@ /dll $(LINKFLAGS)
14 mt.exe -manifest $@.manifest -outputresource:$@;2
16 clean:
17 -rm *.obj *.ilk *.pdb *.manifest $(BIN) >NUL 2>NUL