Last active
December 17, 2015 21:19
-
-
Save pnkfelix/5674400 to your computer and use it in GitHub Desktop.
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
| % make clean | |
| rm one | |
| % make one | |
| touch one | |
| % make two | |
| false | |
| make: *** [two] Error 1 | |
| % !make | |
| make two | |
| false | |
| make: *** [two] Error 1 |
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
| one: | |
| touch one | |
| two: | |
| false | |
| clean: | |
| rm one |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment