myos/make/end.mk

8 lines
374 B
Makefile
Raw Permalink Normal View History

2022-12-05 20:29:00 +01:00
# Accept arguments for MAKECMDARGS targets and turn them into do-nothing targets
ifneq ($(filter $(MAKECMDARGS),$(firstword $(MAKECMDGOALS))),)
2022-09-10 18:31:23 +02:00
ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
ARGS := $(subst :,\:,$(ARGS))
ARGS := $(subst &,\&,$(ARGS))
$(eval $(ARGS):;@:)
endif