-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile.bak
executable file
·32 lines (32 loc) · 1.06 KB
/
makefile.bak
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
main: main.o section.o file.o symbol.o version.o relocation.o disasm.o dis-table.o upm.o operand.o instruction.o block.o function.o edge.o
g++ -o main main.o section.o file.o symbol.o version.o relocation.o disasm.o dis-table.o upm.o operand.o SCInstr.o SCBlock.o SCFunction.o SCEdge.o
main.o: main.cc
g++ -c main.cc
file.o: file.cc file.h
g++ -c file.cc
section.o: section.cc section.h
g++ -c section.cc
symbol.o: symbol.cc symbol.h
g++ -c symbol.cc
version.o: version.cc version.h
g++ -c version.cc
relocation.o: relocation.cc relocation.h
g++ -c relocation.cc
disasm.o: disasm.cpp disasm.h dis-table.h type.h
g++ -c -std=c++11 disasm.cpp
dis-table.o: dis-table.cpp dis-table.h SCInstr.h
g++ -c -std=c++11 dis-table.cpp
upm.o: upm.h upm.cc
g++ -c upm.cc
operand.o: type.h dis-table.h
g++ -c operand.cc
instruction.o: type.h SCInstr.h SCInstr.cpp
g++ -c SCInstr.cpp
block.o: SCBlock.h SCBlock.cpp type.h
g++ -c SCBlock.cpp
function.o: SCFunction.h SCFunction.cpp type.h
g++ -c SCFunction.cpp
edge.o: SCEdge.h SCEdge.cpp type.h
g++ -c SCEdge.cpp
clean:
rm -rf main *.o *~