fork download
  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
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty