Add mapjson; update gbagfx, scaninc

This commit is contained in:
scnorton
2019-04-09 10:04:41 -04:00
parent d0a68de6e0
commit 7f920b887f
19 changed files with 2325 additions and 345 deletions
+15
View File
@@ -0,0 +1,15 @@
CXX := g++
CXXFLAGS := -Wall -std=c++11 -O2
SRCS := json11.cpp mapjson.cpp
HEADERS := mapjson.h
.PHONY: clean
mapjson: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) mapjson mapjson.exe