Guest User

Untitled

a guest
Mar 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. # Makefile
  2. include target1.deps
  3. include target2.deps
  4.  
  5. all: target2.deps
  6. cat $^
  7.  
  8. target2.deps: target1.deps
  9. target1.deps:
  10. echo "target2.deps:" > $@
  11. echo " touch target2.deps" >> $@
Add Comment
Please, Sign In to add comment