Guest User

Untitled

a guest
Oct 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. all:main
  2.  
  3. CPPFLAGS+=-std=c++0x
  4. CPPFLAGS+=-g -O2
  5. CPPFLAGS+=-march=native
  6.  
  7. %:%.cpp
  8. g++ $(CPPFLAGS) -c $M -o $@ $^
  9.  
  10. .depends: *.cpp
  11. g++ $(CPPFLAGS) $^ -M > $@
  12.  
  13. -include .depends
Add Comment
Please, Sign In to add comment