diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-10-24 16:32:18 +0200 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-10-24 16:32:18 +0200 | 
| commit | 1011655d2ef76a0c0aa29dbbff091dab139198e3 (patch) | |
| tree | 63763828f259846f56285691805c187583ecb6bb /Makefile | |
| parent | 1349c00b782eca3ea841bfa388301cb6fc908cc7 (diff) | |
Add FlowGraph
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 19 | 
1 files changed, 12 insertions, 7 deletions
| @@ -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) | 
