Track tools

This commit is contained in:
PikalaxALT
2018-12-20 20:43:40 -05:00
parent 7f5addc626
commit d141011e7f
94 changed files with 12602 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
CXX = g++
CXXFLAGS = -Wall -Werror -std=c++11 -O2
SRCS = scaninc.cpp c_file.cpp asm_file.cpp
HEADERS := scaninc.h asm_file.h c_file.h
.PHONY: clean
scaninc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) scaninc scaninc.exe