summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-09-05 16:03:17 -0400
committerGitHub <noreply@github.com>2019-09-05 16:03:17 -0400
commitc33effb95c398eaf52a928a9ded51cc5e7e8f1e1 (patch)
treec8d410703a5f3ea91136da9550755744b183d531 /tools
parent082093aa36ea82d7e7b8e6cf0c51aca17d73dd9b (diff)
Configure Travis to build nonmatching (#746)
* Configure Travis to build nonmatching
Diffstat (limited to 'tools')
-rwxr-xr-xtools/jsonproc/Makefile5
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)