123456789101112131415161718192021 |
- .PHONY: all
- all: example
- .PHONY: example
- # Shared flags etc.
- include ../Makefile.conf
- CFLAGS+=-g
- inc=$(LIBIGL_INC) $(EIGEN3_INC)
- lib=$(LIBIGL_LIB)
- example: example.o
- g++ $(CFLAGS) -o example example.o $(lib)
- example.o: example.cpp
- g++ $(CFLAGS) -c example.cpp -o example.o $(inc)
- clean:
- rm -f example.o
- rm -f example
|