File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ CC=gcc
2
+ CFLAGS=-fPIC -O2 -I zydis/include/ -I zydis/dependencies/zycore/include/ \
3
+ -I zydis/src/
4
+
5
+ OBJS=zydis/src/Decoder.o \
6
+ zydis/src/DecoderData.o \
7
+ zydis/src/FormatterATT.o \
8
+ zydis/src/FormatterBase.o \
9
+ zydis/src/FormatterBuffer.o \
10
+ zydis/src/Formatter.o \
11
+ zydis/src/FormatterIntel.o \
12
+ zydis/src/MetaInfo.o \
13
+ zydis/src/Mnemonic.o \
14
+ zydis/src/Register.o \
15
+ zydis/src/SharedData.o \
16
+ zydis/src/String.o \
17
+ zydis/src/Utils.o \
18
+ zydis/src/Zydis.o \
19
+ zydis/dependencies/zycore/src/Allocator.o \
20
+ zydis/dependencies/zycore/src/ArgParse.o \
21
+ zydis/dependencies/zycore/src/Bitset.o \
22
+ zydis/dependencies/zycore/src/Format.o \
23
+ zydis/dependencies/zycore/src/List.o \
24
+ zydis/dependencies/zycore/src/String.o \
25
+ zydis/dependencies/zycore/src/Vector.o \
26
+ zydis/dependencies/zycore/src/Zycore.o
27
+
28
+ all: $(OBJS)
29
+ ar rcs libZydis.a $(OBJS)
30
+
Original file line number Diff line number Diff line change 65
65
#define ZYCORE_NO_DEPRECATED
66
66
#endif
67
67
EOF
68
- make -f Makefile.zydis
68
+ make -f Makefile.zydis -j ` nproc `
69
69
fi
70
70
71
71
echo -e " ${GREEN} $0 ${OFF} : building e9patch and e9tool..."
You can’t perform that action at this time.
0 commit comments