diff options
Diffstat (limited to 'tools/preproc/Makefile')
-rw-r--r-- | tools/preproc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile index f504e45bd..24f60e3f6 100644 --- a/tools/preproc/Makefile +++ b/tools/preproc/Makefile @@ -2,9 +2,11 @@ CXX := g++ CXXFLAGS := -std=c++14 -O2 -Wall -Wno-switch -SRCS := asm_file.cpp charmap.cpp preproc.cpp utf8.cpp +SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \ + utf8.cpp -HEADERS := asm_file.h char_util.h charmap.h preproc.h utf8.h +HEADERS := asm_file.h c_file.h char_util.h charmap.h preproc.h string_parser.h \ + utf8.h .PHONY: clean |