Meta: Update makem,sh, Makefile

This commit is contained in:
Adam Porter 2019-12-31 21:14:51 -06:00
parent a513f25b4a
commit 6a97f1d95a
2 changed files with 118 additions and 14 deletions

View file

@ -1,4 +1,16 @@
# * Verbosity
# * Arguments
# For consistency, we use only var=val options, not hyphen-prefixed options.
ifdef autoinstall
AUTOINSTALL = "--auto-install"
endif
ifdef sandbox
SANDBOX = "--sandbox"
endif
# ** Verbosity
# Since the "-v" in "make -v" gets intercepted by Make itself, we have
# to use a variable.
@ -14,4 +26,4 @@ endif
# * Rules
%:
@./makem.sh $(VERBOSE) $(@)
@./makem.sh $(VERBOSE) $(SANDBOX) $(AUTOINSTALL) $(@)