From 681ca68ac96e8d39f49eb2c9f42e5c1e1041f5e0 Mon Sep 17 00:00:00 2001 From: mid-kid Date: Thu, 4 Nov 2021 21:07:26 +0000 Subject: Disassemble some more tables and the first graphic (#71) * Sync tools/ directory with pokeemerald We really ought to have a central repository for this mess * Make incremental builds faster Scientists hate him! He made NODEP disappear with this ONE SIMPLE TRICK!!! Want to know more? -> __click here__ <- * Disassemble some more tables and the first graphic --- tools/jsonproc/.gitignore | 0 tools/jsonproc/Makefile | 10 ++++++++-- tools/jsonproc/inja.hpp | 0 tools/jsonproc/jsonproc.cpp | 0 tools/jsonproc/jsonproc.h | 0 tools/jsonproc/nlohmann/json.hpp | 0 6 files changed, 8 insertions(+), 2 deletions(-) mode change 100644 => 100755 tools/jsonproc/.gitignore mode change 100644 => 100755 tools/jsonproc/Makefile mode change 100644 => 100755 tools/jsonproc/inja.hpp mode change 100644 => 100755 tools/jsonproc/jsonproc.cpp mode change 100644 => 100755 tools/jsonproc/jsonproc.h mode change 100644 => 100755 tools/jsonproc/nlohmann/json.hpp (limited to 'tools/jsonproc') diff --git a/tools/jsonproc/.gitignore b/tools/jsonproc/.gitignore old mode 100644 new mode 100755 diff --git a/tools/jsonproc/Makefile b/tools/jsonproc/Makefile old mode 100644 new mode 100755 index 47198b1..eec73eb --- a/tools/jsonproc/Makefile +++ b/tools/jsonproc/Makefile @@ -8,12 +8,18 @@ SRCS := jsonproc.cpp HEADERS := jsonproc.h inja.hpp nlohmann/json.hpp +ifeq ($(OS),Windows_NT) +EXE := .exe +else +EXE := +endif + .PHONY: all clean -all: jsonproc +all: jsonproc$(EXE) @: -jsonproc: $(SRCS) $(HEADERS) +jsonproc$(EXE): $(SRCS) $(HEADERS) $(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS) clean: diff --git a/tools/jsonproc/inja.hpp b/tools/jsonproc/inja.hpp old mode 100644 new mode 100755 diff --git a/tools/jsonproc/jsonproc.cpp b/tools/jsonproc/jsonproc.cpp old mode 100644 new mode 100755 diff --git a/tools/jsonproc/jsonproc.h b/tools/jsonproc/jsonproc.h old mode 100644 new mode 100755 diff --git a/tools/jsonproc/nlohmann/json.hpp b/tools/jsonproc/nlohmann/json.hpp old mode 100644 new mode 100755 -- cgit v1.2.3