diff options
| author | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-19 18:03:24 -0400 |
|---|---|---|
| committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-19 18:28:55 -0400 |
| commit | 7eeba327bd6dc235a33f06a7779e3b3c52f04475 (patch) | |
| tree | e9639b90704ac227cb14a0ec87b9dc0b2a478a15 /tools/jsonproc/Makefile | |
| parent | caa193364bf786cb567ed16eb4670ed2cc4cb362 (diff) | |
Dump items and start decomp item_use
Diffstat (limited to 'tools/jsonproc/Makefile')
| -rw-r--r-- | tools/jsonproc/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/jsonproc/Makefile b/tools/jsonproc/Makefile new file mode 100644 index 000000000..b415e7b41 --- /dev/null +++ b/tools/jsonproc/Makefile @@ -0,0 +1,20 @@ +CXX := g++ + +CXXFLAGS := -Wall -std=c++11 -O2 + +INCLUDES := -I . + +SRCS := jsonproc.cpp + +HEADERS := jsonproc.h inja.hpp nlohmann/json.hpp + +.PHONY: clean + +all: jsonproc + @: + +jsonproc: $(SRCS) $(HEADERS) + $(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS) + +clean: + $(RM) jsonproc jsonproc.exe |
