metasurf
view examples/simple/Makefile @ 7:246260d95415
added /usr/local/lib linker path
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Sat, 21 Jan 2012 04:15:30 +0200 |
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)