Makefile 99 B

12345678
  1. FLAGS := -std=c++0x -fopenmp
  2. graphgen: graphgen.cpp
  3. g++ $(FLAGS) -o $@ $<
  4. clean:
  5. rm graphgen