Meta: Update makem,sh, Makefile
This commit is contained in:
parent
a513f25b4a
commit
6a97f1d95a
2 changed files with 118 additions and 14 deletions
16
Makefile
16
Makefile
|
|
@ -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) $(@)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue