summaryrefslogtreecommitdiff
path: root/tools/jsonproc
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2019-07-23 16:17:00 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2019-07-23 16:17:00 -0400
commit6ff1426abed52c9642a6ccd5a6eda7210d0637e7 (patch)
treedb4ae0c65521016af55992ba2da38b0005904455 /tools/jsonproc
parentfd53bbc464eef80d91246d0abdbcd8c5cbb4c912 (diff)
Quieter "make tools"
Diffstat (limited to 'tools/jsonproc')
-rwxr-xr-xtools/jsonproc/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/jsonproc/Makefile b/tools/jsonproc/Makefile
index 69093a216..721da1025 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: all clean
+
+all: jsonproc
+ @:
jsonproc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS)