Revert multiple source change commits for rebase.

This commit is contained in:
luckytyphlosion
2020-12-16 13:29:02 -05:00
parent aad94c3433
commit cc5db41f30
17 changed files with 121 additions and 196 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: