summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-10-24 16:32:18 +0200
committerRoland Reichwein <mail@reichwein.it>2020-10-24 16:32:18 +0200
commit1011655d2ef76a0c0aa29dbbff091dab139198e3 (patch)
tree63763828f259846f56285691805c187583ecb6bb /Makefile
parent1349c00b782eca3ea841bfa388301cb6fc908cc7 (diff)
Add FlowGraph
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 12 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 38e5759..316e21b 100644
--- a/Makefile
+++ b/Makefile
@@ -63,19 +63,24 @@ PROGSRC=\
coff.cpp \
debug.cpp \
elf.cpp \
+ flowgraph/data.cpp \
+ flowgraph/graph.cpp \
+ flowgraph/node.cpp \
+ flowgraph/storage.cpp \
file.cpp \
grammer.cpp \
lexer.cpp \
minicc.cpp \
TESTSRC=\
- test-cpp.cpp \
- test-cppbnf.cpp \
- test-elf.cpp \
- test-grammer.cpp \
- test-lexer.cpp \
- test-minicc.cpp \
- test-asm.cpp \
+ tests/test-cpp.cpp \
+ tests/test-cppbnf.cpp \
+ tests/test-elf.cpp \
+ tests/test-flowgraph.cpp \
+ tests/test-grammer.cpp \
+ tests/test-lexer.cpp \
+ tests/test-minicc.cpp \
+ tests/test-asm.cpp \
googlemock/src/gmock-all.cpp \
googletest/src/gtest-all.cpp \
$(PROGSRC)