org-ql/Makefile
2019-09-09 09:00:56 -05:00

17 lines
285 B
Makefile

# * Verbosity
# Since the "-v" in "make -v" gets intercepted by Make itself, we have
# to use a variable.
verbose = $(v)
ifneq (,$(findstring vv,$(verbose)))
VERBOSE = "-vv"
else ifneq (,$(findstring v,$(verbose)))
VERBOSE = "-v"
endif
# * Rules
%:
@./makem.sh $(VERBOSE) $(@)