diff options
| author | garak <garakmon@gmail.com> | 2019-02-02 14:22:41 -0500 |
|---|---|---|
| committer | huderlem <huderlem@gmail.com> | 2019-02-03 09:38:29 -0600 |
| commit | 82abc164dc9f6a74fdf0c535cc1621b7ed05318b (patch) | |
| tree | 784f52f81c5b6bc9755ebc0babb2c909277fa311 /tools/mapjson/Makefile | |
| parent | 29d6221935d3e8e01dc11b4023ba977ff433f3c9 (diff) | |
convert mapjson.py to mapjson.cpp
Diffstat (limited to 'tools/mapjson/Makefile')
| -rw-r--r-- | tools/mapjson/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/mapjson/Makefile b/tools/mapjson/Makefile new file mode 100644 index 000000000..d09acad50 --- /dev/null +++ b/tools/mapjson/Makefile @@ -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 |
