metasurf
diff examples/simple/Makefile @ 8:94220a9600b3
added missing -lm flags
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 20 Oct 2013 02:47:09 +0300 |
parents | 2c575855f707 |
children |
line diff
1.1 --- a/examples/simple/Makefile Sat Jan 21 04:15:30 2012 +0200 1.2 +++ b/examples/simple/Makefile Sun Oct 20 02:47:09 2013 +0300 1.3 @@ -4,7 +4,7 @@ 1.4 1.5 CC = gcc 1.6 CFLAGS = -pedantic -Wall -g -I../../src 1.7 -LDFLAGS = -L../.. -lmetasurf $(libgl) 1.8 +LDFLAGS = -L../.. -lmetasurf $(libgl) -lm 1.9 1.10 ifeq ($(shell uname -s), Darwin) 1.11 libgl = -framework OpenGL -framework GLUT