[Round 2] Revert multiple source change commits for re-commit.

This commit is contained in:
luckytyphlosion
2020-12-16 20:31:10 -05:00
parent 11df2113d9
commit 345aab63cf
17 changed files with 121 additions and 213 deletions

View File

@@ -6,18 +6,12 @@ SRCS := agb.cpp error.cpp main.cpp midi.cpp tables.cpp
HEADERS := agb.h error.h main.h midi.h tables.h
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
.PHONY: all clean
all: mid2agb$(EXE)
all: mid2agb
@:
mid2agb$(EXE): $(SRCS) $(HEADERS)
mid2agb: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean: