metasurf
diff examples/metaballs/Makefile @ 2:9ab057fba0c5
added copyright statements, added comments, yada yada
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 25 Oct 2011 08:59:07 +0300 |
parents | dc0e882ec3f9 |
children | dedd153d2ceb |
line diff
1.1 --- a/examples/metaballs/Makefile Tue Oct 25 07:57:07 2011 +0300 1.2 +++ b/examples/metaballs/Makefile Tue Oct 25 08:59:07 2011 +0300 1.3 @@ -3,8 +3,11 @@ 1.4 dep = $(obj:.o=.d) 1.5 bin = metaballs 1.6 1.7 +# uncomment the following line to disable shaders (for old systems like SGI or whatever) 1.8 +#nosdr = -DNO_SHADERS 1.9 + 1.10 CC = gcc 1.11 -CFLAGS = -pedantic -Wall -g -I../../src 1.12 +CFLAGS = -pedantic -Wall -g -I../../src $(nosdr) 1.13 LDFLAGS = -L../.. -lmetasurf $(libgl) 1.14 1.15 ifeq ($(shell uname -s), Darwin)