blob: 0e29f0f185004378f63516a5beb14ee707e5b51e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
##############################################################################
##
## Utility to trace serial (COM1, COM2, etc.) APIs.
##
## Microsoft Research Detours Package
##
## Copyright (c) Microsoft Corporation. All rights reserved.
##
!include ..\common.mak
LIBS=$(LIBS) kernel32.lib
all: dirs \
$(BIND)\trcser$(DETOURS_BITS).dll \
!IF $(DETOURS_SOURCE_BROWSING)==1
$(OBJD)\trcser$(DETOURS_BITS).bsc \
!ENDIF
option
dirs:
@if not exist $(BIND) mkdir $(BIND) && echo. Created $(BIND)
@if not exist $(OBJD) mkdir $(OBJD) && echo. Created $(OBJD)
clean:
-del *~ test.txt 2>nul
-del $(BIND)\trcser*.* 2>nul
-rmdir /q /s $(OBJD) 2>nul
realclean: clean
-rmdir /q /s $(OBJDS) 2>nul
##############################################################################
$(OBJD)\trcser.obj: trcser.cpp
$(OBJD)\trcser.res: trcser.rc
$(BIND)\trcser$(DETOURS_BITS).dll: $(OBJD)\trcser.obj $(OBJD)\trcser.res $(DEPS)
cl /LD $(CFLAGS) /Fe$@ /Fd$(@R).pdb \
$(OBJD)\trcser.obj $(OBJD)\trcser.res \
/link $(LINKFLAGS) /subsystem:console \
/export:DetourFinishHelperProcess,@1,NONAME \
$(LIBS)
$(OBJD)\trcser$(DETOURS_BITS).bsc : $(OBJD)\trcser.obj
bscmake /v /n /o $@ $(OBJD)\trcser.sbr
############################################### Install non-bit-size binaries.
!IF "$(DETOURS_OPTION_PROCESSOR)" != ""
$(OPTD)\trcser$(DETOURS_OPTION_BITS).dll:
$(OPTD)\trcser$(DETOURS_OPTION_BITS).pdb:
$(BIND)\trcser$(DETOURS_OPTION_BITS).dll : $(OPTD)\trcser$(DETOURS_OPTION_BITS).dll
@if exist $? copy /y $? $(BIND) >nul && echo $@ copied from $(DETOURS_OPTION_PROCESSOR).
$(BIND)\trcser$(DETOURS_OPTION_BITS).pdb : $(OPTD)\trcser$(DETOURS_OPTION_BITS).pdb
@if exist $? copy /y $? $(BIND) >nul && echo $@ copied from $(DETOURS_OPTION_PROCESSOR).
option: \
$(BIND)\trcser$(DETOURS_OPTION_BITS).dll \
$(BIND)\trcser$(DETOURS_OPTION_BITS).pdb \
!ELSE
option:
!ENDIF
##############################################################################
test: all
@echo -------- Logging output to test.txt ------------
start $(BIND)\syelogd.exe /o test.txt
$(BIND)\sleep5.exe 1
@echo -------- Should load trcser$(DETOURS_BITS).dll dynamically using withdll.exe ------------
$(BIND)\withdll -d:$(BIND)\trcser$(DETOURS_BITS).dll $(BIND)\sleepold.exe
@echo -------- Log from syelog -------------
type test.txt
################################################################# End of File.
|