-
Notifications
You must be signed in to change notification settings - Fork 67
/
Makefile
167 lines (146 loc) · 7.13 KB
/
Makefile
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
.PHONY: all clean install dev release debug sanitize
.SECONDEXPANSION:
#########################################################################
# BUILD COMMON
#########################################################################
PREFIX ?= /usr
CXXFLAGS ?= -march=native
CXXFLAGS += -std=c++11 -Wall -Wno-reorder -fPIC -pie \
-DVERSION=$(shell cat VERSION) -Wl,-rpath=$(PREFIX)/share/e9tool/lib/
E9PATCH_OBJS=\
src/e9patch/e9CFR.o \
src/e9patch/e9alloc.o \
src/e9patch/e9api.o \
src/e9patch/e9elf.o \
src/e9patch/e9emit.o \
src/e9patch/e9json.o \
src/e9patch/e9mapping.o \
src/e9patch/e9misc.o \
src/e9patch/e9optimize.o \
src/e9patch/e9patch.o \
src/e9patch/e9pe.o \
src/e9patch/e9tactics.o \
src/e9patch/e9trampoline.o \
src/e9patch/e9x86_64.o
E9TOOL_OBJS=\
src/e9tool/e9action.o \
src/e9tool/e9cfg.o \
src/e9tool/e9codegen.o \
src/e9tool/e9csv.o \
src/e9tool/e9dwarf.o \
src/e9tool/e9frontend.o \
src/e9tool/e9metadata.o \
src/e9tool/e9misc.o \
src/e9tool/e9parser.o \
src/e9tool/e9tool.o \
src/e9tool/e9types.o \
src/e9tool/e9x86_64.o
E9TOOL_LIBS ::=
E9TOOL_CXXFLAGS ::= -Isrc/e9tool -Wno-unused-function
E9TOOL_LDFLAGS ::= -Wl,--dynamic-list=src/e9tool/e9tool.syms
E9TOOL_LDLIBS ::= -ldl -lz
#########################################################################
# CONVENTIONAL BUILD
#########################################################################
all: CXXFLAGS += -DSYSTEM_LIBDW
all: E9TOOL_LDLIBS += -ldw -lZydis
all: e9tool e9patch
e9tool: CXXFLAGS += $(E9TOOL_CXXFLAGS)
e9tool: LDFLAGS += $(E9TOOL_LDFLAGS)
e9tool: LDLIBS += $(E9TOOL_LIBS) $(E9TOOL_LDLIBS)
e9tool: $(E9TOOL_OBJS)
$(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS) $(LDLIBS)
e9patch: $(E9PATCH_OBJS)
$(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS) $(LDLIBS)
clean:
$(MAKE) -C contrib/libdw clean
$(MAKE) -C contrib/zydis clean
rm -rf $(E9PATCH_OBJS) $(E9TOOL_OBJS) e9patch e9tool \
src/e9patch/e9loader_*.c e9loader_*.o e9loader_*.bin
src/e9patch/e9loader_elf.c: src/e9patch/e9loader_elf.cpp
$(CXX) -std=c++11 -Wall -fno-stack-protector -Wno-unused-function -fPIC \
-Os -c $<
$(CXX) -pie -nostdlib -o e9loader_elf.bin e9loader_elf.o -T e9loader.ld
xxd -i e9loader_elf.bin > $@
src/e9patch/e9loader_pe.c: src/e9patch/e9loader_pe.cpp
$(CXX) -std=c++11 -Wall -fno-stack-protector -fno-zero-initialized-in-bss \
-Wno-unused-function -fPIC -mabi=ms -fshort-wchar -Os -c $<
$(CXX) -pie -nostdlib -o e9loader_pe.bin e9loader_pe.o -T e9loader.ld
xxd -i e9loader_pe.bin > $@
src/e9patch/e9elf.o: src/e9patch/e9loader_elf.c
src/e9patch/e9pe.o: src/e9patch/e9loader_pe.c
install: all
install -d "$(DESTDIR)$(PREFIX)/bin"
install -m 755 e9patch "$(DESTDIR)$(PREFIX)/bin/e9patch"
install -m 755 e9tool "$(DESTDIR)$(PREFIX)/bin/e9tool"
install -m 755 e9compile.sh "$(DESTDIR)$(PREFIX)/bin/e9compile"
sed \
-e 's#-I examples#-I $(PREFIX)/share/e9compile/include#g' e9compile.sh > \
"$(DESTDIR)$(PREFIX)/bin/e9compile"
chmod 555 "$(DESTDIR)$(PREFIX)/bin/e9compile"
install -d "$(DESTDIR)$(PREFIX)/share/doc/e9patch/"
sed \
-e 's#https://github.com/GJDuck/e9patch/blob/master/doc/e9tool-user-guide.md#file://$(PREFIX)/share/doc/e9tool/e9tool-user-guide.html#g' \
-e 's#https://github.com/GJDuck/e9patch/tree/master/examples#file://$(PREFIX)/share/e9tool/examples#g' \
doc/e9patch-programming-guide.md | markdown > \
"$(DESTDIR)$(PREFIX)/share/doc/e9patch/e9patch-programming-guide.html"
install -m 444 LICENSE "$(DESTDIR)$(PREFIX)/share/doc/e9patch/LICENSE"
install -d "$(DESTDIR)$(PREFIX)/share/doc/e9tool/"
sed \
-e 's#https://github.com/GJDuck/e9patch/blob/master/doc/e9patch-programming-guide.md#file://$(PREFIX)/share/doc/e9patch/e9patch-programming-guide.html#g' \
doc/e9tool-user-guide.md | markdown > \
"$(DESTDIR)$(PREFIX)/share/doc/e9tool/e9tool-user-guide.html"
install -m 444 LICENSE "$(DESTDIR)$(PREFIX)/share/doc/e9tool/LICENSE"
install -Dm 444 src/e9tool/e9tool.h "$(DESTDIR)$(PREFIX)/include/e9tool/e9tool.h"
install -Dm 444 src/e9tool/e9plugin.h "$(DESTDIR)$(PREFIX)/include/e9tool/e9plugin.h"
install -d "$(DESTDIR)$(PREFIX)/share/e9tool/examples/"
install -m 444 examples/bounds.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/bounds.c"
sed \
-e 's#\./e9compile.sh examples/bounds.c#e9compile $(PREFIX)/share/e9tool/examples/bounds.c#' \
-e 's#\./e9tool#e9tool#' \
examples/bounds.sh > \
"$(DESTDIR)$(PREFIX)/share/e9tool/examples/bounds.sh"
chmod 555 "$(DESTDIR)$(PREFIX)/share/e9tool/examples/bounds.sh"
install -m 444 examples/cfi.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/cfi.c"
install -m 444 examples/count.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/count.c"
install -m 444 examples/cov.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/cov.c"
install -m 444 examples/delay.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/delay.c"
install -m 444 examples/hello.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/hello.c"
install -m 444 examples/limit.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/limit.c"
install -m 444 examples/nop.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/nop.c"
install -m 444 examples/print.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/print.c"
install -m 444 examples/printf.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/printf.c"
install -m 444 examples/skip.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/skip.c"
install -m 444 examples/state.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/state.c"
install -m 444 examples/trap.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/trap.c"
install -m 444 examples/win64_demo.c "$(DESTDIR)$(PREFIX)/share/e9tool/examples/win64_demo.c"
install -d "$(DESTDIR)$(PREFIX)/share/e9tool/examples/plugins/"
install -m 444 examples/plugins/example.cpp "$(DESTDIR)$(PREFIX)/share/e9tool/examples/plugins/example.cpp"
install -d "$(DESTDIR)$(PREFIX)/share/e9compile/include/"
install -m 444 examples/stdlib.c "$(DESTDIR)$(PREFIX)/share/e9compile/include/stdlib.c"
install -m 444 src/e9patch/e9loader.h "$(DESTDIR)$(PREFIX)/share/e9compile/include/e9loader.h"
install -d "$(DESTDIR)$(PREFIX)/share/man/man1/"
gzip --stdout doc/e9patch.1 > "$(DESTDIR)$(PREFIX)/share/man/man1/e9patch.1.gz"
chmod 444 "$(DESTDIR)$(PREFIX)/share/man/man1/e9patch.1.gz"
gzip --stdout doc/e9tool.1 > "$(DESTDIR)$(PREFIX)/share/man/man1/e9tool.1.gz"
chmod 444 "$(DESTDIR)$(PREFIX)/share/man/man1/e9tool.1.gz"
gzip --stdout doc/e9compile.1 > "$(DESTDIR)$(PREFIX)/share/man/man1/e9compile.1.gz"
chmod 444 "$(DESTDIR)$(PREFIX)/share/man/man1/e9compile.1.gz"
#########################################################################
# SPECIAL BUILD
#########################################################################
contrib/zydis/libZydis.a:
$(MAKE) -C contrib/zydis
contrib/libdw/libdw.a:
$(MAKE) -C contrib/libdw
dev: E9TOOL_CXXFLAGS += -Icontrib/libdw \
-Icontrib/zydis/include -Icontrib/zydis/dependencies/zycore/include
dev: E9TOOL_LIBS += contrib/zydis/libZydis.a contrib/libdw/libdw.a
dev: contrib/zydis/libZydis.a contrib/libdw/libdw.a e9patch e9tool
release: CXXFLAGS += -O2 -DNDEBUG
release: dev
strip e9patch e9tool
debug: CXXFLAGS += -O0 -g
debug: dev
sanitize: CXXFLAGS += -O0 -g -fsanitize=address
sanitize: dev