123456789101112131415161718192021 |
- .PHONY: all
- all: example
- .PHONY: example
- igl_lib=../../
- lib=-lAntTweakBar -framework AppKit -L$(igl_lib)/lib -ligl
- inc=-I$(igl_lib)/include
- example: example.o
- g++ $(CFLAGS) -o example example.o -framework OpenGL -framework GLUT $(lib)
- rm example.o
- example.o: example.cpp
- g++ $(CFLAGS) -c example.cpp -o example.o $(inc)
- clean:
- rm -f example.o
- rm -f example
|