Created
June 3, 2015 12:21
-
-
Save chadrien/edd9167f5325821aaec5 to your computer and use it in GitHub Desktop.
Proxy commands in Makefile (useful for docker for instance)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUPPORTED_COMMANDS := command1 command2 | |
SUPPORTS_MAKE_ARGS := $(findstring $(firstword $(MAKECMDGOALS)), $(SUPPORTED_COMMANDS)) | |
ifneq "$(SUPPORTS_MAKE_ARGS)" "" | |
# use the rest as arguments for the command | |
COMMAND_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)) | |
# ...and turn them into do-nothing targets | |
$(eval $(COMMAND_ARGS):;@:) | |
endif | |
command1: | |
@command1 $(COMMAND_ARGS) | |
command2: | |
@command2 --option1 --option2=foo $(COMMAND_ARGS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Taken from https://github.com/marmelab/make-docker-command/blob/master/Makefile