Skip to content

Instantly share code, notes, and snippets.

@vicendominguez
Created May 13, 2014 09:30
Show Gist options
  • Save vicendominguez/999776bd8e72a23d23a4 to your computer and use it in GitHub Desktop.
Save vicendominguez/999776bd8e72a23d23a4 to your computer and use it in GitHub Desktop.
One makefile to rule them all
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