metasurf
view examples/simple/Makefile @ 6:c1a60ab45bf7
added commandline option in volume example to set the iso threshold
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 26 Oct 2011 23:38:20 +0300 |
parents | |
children | 94220a9600b3 |
line source
1 src = $(wildcard *.c)
2 obj = $(src:.c=.o)
3 bin = simple
5 CC = gcc
6 CFLAGS = -pedantic -Wall -g -I../../src
7 LDFLAGS = -L../.. -lmetasurf $(libgl)
9 ifeq ($(shell uname -s), Darwin)
10 libgl = -framework OpenGL -framework GLUT
11 else
12 libgl = -lGL -lGLU -lglut
13 endif
15 $(bin): $(obj)
16 $(CC) -o $@ $(obj) $(LDFLAGS)
18 .PHONY: clean
19 clean:
20 rm -f $(obj) $(bin)