Created
December 27, 2012 19:51
-
-
Save fabriceleal/4391411 to your computer and use it in GitHub Desktop.
Implicit rule: For all targets, execute the same rule. Dependency has the same name as the target (give or take extension)
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
# Assumes that | |
# exe[n] is generated from exe[n].cpp | |
all: exe1 exe2 exe3 | |
%: %.cpp | |
$(CC) $? -o $@ $(FLAGS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment