diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-09-05 16:03:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-05 16:03:17 -0400 |
commit | c33effb95c398eaf52a928a9ded51cc5e7e8f1e1 (patch) | |
tree | c8d410703a5f3ea91136da9550755744b183d531 /tools | |
parent | 082093aa36ea82d7e7b8e6cf0c51aca17d73dd9b (diff) |
Configure Travis to build nonmatching (#746)
* Configure Travis to build nonmatching
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/jsonproc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/jsonproc/Makefile b/tools/jsonproc/Makefile index 69093a216..bddf59683 100755 --- a/tools/jsonproc/Makefile +++ b/tools/jsonproc/Makefile @@ -8,7 +8,10 @@ SRCS := jsonproc.cpp HEADERS := jsonproc.h inja.hpp nlohmann/json.hpp -.PHONY: clean +.PHONY: clean all + +all: jsonproc + @: jsonproc: $(SRCS) $(HEADERS) $(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS) |