summaryrefslogtreecommitdiff
path: root/tools/scaninc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scaninc/Makefile')
-rw-r--r--tools/scaninc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile
new file mode 100644
index 000000000..0efe283f1
--- /dev/null
+++ b/tools/scaninc/Makefile
@@ -0,0 +1,13 @@
+CXX = g++
+
+CXXFLAGS = -Wall -std=c++11 -O2
+
+SRCS = scaninc.cpp
+
+.PHONY: clean
+
+scaninc: $(SRCS)
+ $(CXX) $(CXXFLAGS) $(SRCS) -o $@
+
+clean:
+ $(RM) scaninc scaninc.exe