Last active
March 9, 2017 14:52
-
-
Save bendikro/8119c8041ac1dd692af2c9335837299c 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
all: test1 test2 | |
@echo "All test!" | |
.PHONY: test-dep | |
test-dep%: | |
@echo "test_dep!" | |
test1: test-dep1 | |
@echo "Test1" | |
test2: test-dep2 | |
@echo "Test2" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment