123456789101112131415161718192021222324252627 |
- all: example1
- # Shared flags etc.
- include ../../Makefile.conf
- igl_lib=../../
- eigen_lib=$(OPT)/local/include/eigen3/
- CFLAGS=-g
- inc=-I$(igl_lib)/include -I$(eigen_lib)
- lib=-L$(igl_lib)/lib -ligl
- matlab_inc=-I$(MATLAB)/extern/include
- matlab_lib=-L$(MATLAB)/bin/maci64/ -leng -lmx
- example1: example1.o
- g++ $(CFLAGS) -o example1 example1.o $(OPENGL_LIB) $(GLUT_LIB) $(lib)
- example1.o: example1.cpp
- g++ $(CFLAGS) -c example1.cpp -o example1.o $(inc)
- clean:
- rm -f example1.o
- rm -f example1
- rm -f bunny_out.off
|