Overhaul scaninc to work recursively

This also fixes the bug where scaninc would ignore #include lines
in assembly files.
This commit is contained in:
Phlosioneer
2019-03-03 21:59:57 -05:00
committed by huderlem
parent 0081474018
commit 105e1721d6
10 changed files with 238 additions and 71 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ CXX = g++
CXXFLAGS = -Wall -Werror -std=c++11 -O2
SRCS = scaninc.cpp c_file.cpp asm_file.cpp
SRCS = scaninc.cpp c_file.cpp asm_file.cpp source_file.cpp
HEADERS := scaninc.h asm_file.h c_file.h
HEADERS := scaninc.h asm_file.h c_file.h source_file.h
.PHONY: clean