27 lines
466 B
Makefile
27 lines
466 B
Makefile
|
|
.PHONY: all
|
|
|
|
# Shared flags etc.
|
|
include ../../Makefile.conf
|
|
|
|
all: example
|
|
|
|
.PHONY: example
|
|
|
|
igl_lib=../../
|
|
eigen=-I$(DEFAULT_PREFIX)/include/eigen3 -I$(DEFAULT_PREFIX)/include/eigen3/unsupported
|
|
|
|
#CFLAGS=-g
|
|
CFLAGS=-Os -DNDEBUG
|
|
inc=-I$(igl_lib)/include $(eigen)
|
|
lib=-L$(igl_lib)/lib -ligl
|
|
|
|
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
|