Created
November 30, 2017 08:35
-
-
Save dazld/04c27782a81533b1de3358afe4304e57 to your computer and use it in GitHub Desktop.
make ... file
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
ifndef (${BAZ}) | |
BAZ := "/baa" | |
endif | |
FOO := "blabalabl" | |
vvvv: | |
@echo "${BAZ} ${FOO} asdiajsd" | |
foo.text: BLA=bla | |
foo.text: | |
@echo ${BAZ} | |
@echo ${BLA} | |
@echo "I like turtles" > foo.txt | |
bar.text: foo.text | |
@echo ${FOO} | |
@echo "I like pie" > bar.txt | |
baz.text: bar.text | |
@cat foo.txt bar.txt > baz.txt | |
@echo "I am like php but worse" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment