Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $(BUILDDIR)/%.d: %.cpp | $(BUILDDIR)
  2. $(CXX) $(CXXFLAGS) -MM -MT $(@:.d=.o) $< > $@
  3.  
  4. SOMEVAR:=hello
  5.  
  6. test:
  7. echo ${SOMEVAR}
  8. echo $SOMEVAR
  9. echo $(SOMEVAR:hello=world)
  10. echo $($SOMEVAR:hello=world)
  11.  
  12. echo hello
  13. echo OMEVAR
  14. echo world
  15. echo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement