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
| # Makefile tutorial, through examples | |
| # This is not a makefile! I just called it as such to have vim coloring work well. | |
| ######## | |
| # This makefile will always run. The default target is some_binary, because it is first. | |
| ######## | |
| some_binary: | |
| echo "nothing" | |
| ######## |
OlderNewer