Makefile 416 B

1234567891011121314151617181920
  1. .PHONY: all
  2. # Shared flags etc.
  3. include ../../build/Makefile.conf
  4. all: convertmesh
  5. .PHONY: convertmesh
  6. INC=$(LIBIGL_INC) $(EIGEN3_INC)
  7. LIB=$(LIBIGL_LIB)
  8. convertmesh: convertmesh.o
  9. g++ $(OPENMP) $(AFLAGS) $(CFLAGS) $(LIB) -o convertmesh convertmesh.o
  10. convertmesh.o: convertmesh.cpp
  11. g++ $(OPENMP) $(AFLAGS) $(CFLAGS) -c convertmesh.cpp -o convertmesh.o $(INC)
  12. clean:
  13. rm -f convertmesh.o
  14. rm -f convertmesh