Last active
June 16, 2019 17:54
-
-
Save aprell/c5902f24d718f525c13a623e9a56a37c to your computer and use it in GitHub Desktop.
Target-specific variables
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
| foo: bar | |
| foo: | |
| @echo foo: $(FLAGS) | |
| bar: FLAGS += B | |
| bar: baz | |
| bar: | |
| @echo bar: $(FLAGS) | |
| baz: FLAGS += C | |
| baz: | |
| @echo baz: $(FLAGS) | |
| .PHONY: foo bar baz |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
makeprints: