diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2020-12-16 13:29:02 -0500 |
commit | cc5db41f30708c1cc2d33a46879c96a9404764a3 (patch) | |
tree | d59ba2fd880b8eb47ab7e1a5885d067b028598ff /tools/mapjson | |
parent | aad94c34334ee44f1298175df38f14dc27ae5fb8 (diff) |
Revert multiple source change commits for rebase.
Diffstat (limited to 'tools/mapjson')
-rw-r--r-- | tools/mapjson/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tools/mapjson/Makefile b/tools/mapjson/Makefile index 100e809c6..c1f703f9f 100644 --- a/tools/mapjson/Makefile +++ b/tools/mapjson/Makefile @@ -6,18 +6,12 @@ SRCS := json11.cpp mapjson.cpp HEADERS := mapjson.h -ifeq ($(OS),Windows_NT) -EXE := .exe -else -EXE := -endif - .PHONY: all clean -all: mapjson$(EXE) +all: mapjson @: -mapjson$(EXE): $(SRCS) $(HEADERS) +mapjson: $(SRCS) $(HEADERS) $(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS) clean: |