metasurf

view examples/simple/Makefile @ 4:2c575855f707

added simple example
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 25 Oct 2011 23:21:32 +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)