Last active
December 11, 2022 00:33
-
-
Save udovichenko/cf64bf3964dbdb787cc8ac9ee06e4f63 to your computer and use it in GitHub Desktop.
Makefile: dynamically create targets from array
This file contains hidden or 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
TARGETS = func1 func2 func3 | |
$(TARGETS): %: | |
./funcs.sh $* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment