From 1011655d2ef76a0c0aa29dbbff091dab139198e3 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 24 Oct 2020 16:32:18 +0200 Subject: Add FlowGraph --- Makefile | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3