[Round 3] Revert multiple source change commits for re-commit.

This commit is contained in:
luckytyphlosion
2020-12-16 21:24:08 -05:00
parent 32e566def0
commit 5a5acfb0ad
17 changed files with 122 additions and 214 deletions

View File

@@ -8,18 +8,12 @@ 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$(EXE)
all: jsonproc
@:
jsonproc$(EXE): $(SRCS) $(HEADERS)
jsonproc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS)
clean: