Created
May 13, 2014 09:30
-
-
Save vicendominguez/999776bd8e72a23d23a4 to your computer and use it in GitHub Desktop.
One makefile to rule them all
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
all: | |
$(MAKE) -C directory1 | |
$(MAKE) -C directory2 | |
$(MAKE) -C directory3 | |
clean: | |
$(MAKE) -C directory1 clean | |
$(MAKE) -C directory2 clean | |
$(MAKE) -C directory3 clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment