summaryrefslogtreecommitdiff
path: root/tools/scaninc/Makefile
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2017-01-23 16:34:20 -0800
committerYamaArashi <shadow962@live.com>2017-01-23 21:31:28 -0800
commitc8542506580c0fa247bbb44c169a2cb1244577e4 (patch)
tree904e4c48d51b0452f8b1c8194a8ac636e7ea1657 /tools/scaninc/Makefile
parent535ed69d33072543b543829b86409758cc7f6318 (diff)
preproc incbins
Diffstat (limited to 'tools/scaninc/Makefile')
-rw-r--r--tools/scaninc/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile
index 0efe283f1..71c4389ef 100644
--- a/tools/scaninc/Makefile
+++ b/tools/scaninc/Makefile
@@ -2,11 +2,13 @@ CXX = g++
CXXFLAGS = -Wall -std=c++11 -O2
-SRCS = scaninc.cpp
+SRCS = scaninc.cpp c_file.cpp asm_file.cpp
+
+HEADERS := scaninc.h asm_file.h c_file.h
.PHONY: clean
-scaninc: $(SRCS)
+scaninc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@
clean: