makefile 113 B

12345678
  1. all: t1
  2. t1:
  3. g++ t1.C -g3 -o t1 --std=c++0x -I.
  4. t1_o:
  5. g++ t1.C -Ofast -o t1_o --std=c++0x -I.
  6. clean:
  7. rm -f t1