metasurf
diff examples/metaballs/Makefile @ 1:dc0e882ec3f9
renamed example source file test.c -> metaballs.c
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 25 Oct 2011 07:57:07 +0300 |
parents | 7aa4627e492b |
children | 9ab057fba0c5 |
line diff
1.1 --- a/examples/metaballs/Makefile Tue Oct 25 07:34:31 2011 +0300 1.2 +++ b/examples/metaballs/Makefile Tue Oct 25 07:57:07 2011 +0300 1.3 @@ -1,11 +1,11 @@ 1.4 src = $(wildcard src/*.c) 1.5 obj = $(src:.c=.o) 1.6 dep = $(obj:.o=.d) 1.7 -bin = metasurf 1.8 +bin = metaballs 1.9 1.10 CC = gcc 1.11 -CFLAGS = -pedantic -Wall -g -O3 1.12 -LDFLAGS = $(libgl) 1.13 +CFLAGS = -pedantic -Wall -g -I../../src 1.14 +LDFLAGS = -L../.. -lmetasurf $(libgl) 1.15 1.16 ifeq ($(shell uname -s), Darwin) 1.17 libgl = -framework OpenGL -framework GLUT -lGLEW