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
+18
View File
@@ -0,0 +1,18 @@
CXX := g++
CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch -Werror
SRCS := agb.cpp error.cpp main.cpp midi.cpp tables.cpp
HEADERS := agb.h error.h main.h midi.h tables.h
.PHONY: all clean
all: mid2agb
@:
mid2agb: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) mid2agb mid2agb.exe