Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.47 KB | None | 0 0
  1. ####### Implicit rules
  2.  
  3. .SUFFIXES: .c .cpp .cc .cxx
  4.  
  5. {.}.cpp{release\}.obj::
  6.     $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<<
  7.     $<
  8. <<   # <----------------------------------------------- Ths is line 146 (with error)
  9.  
  10. {.}.cc{release\}.obj::
  11.     $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<<
  12.     $<
  13. <<
  14.  
  15. {.}.cxx{release\}.obj::
  16.     $(CXX) -c $(CXXFLAGS) $(INCPATH) -Forelease\ @<<
  17.     $<
  18. <<
  19.  
  20. {.}.c{release\}.obj::
  21.     $(CC) -c $(CFLAGS) $(INCPATH) -Forelease\ @<<
  22.     $<
  23. <<
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement