libanim

view example/Makefile @ 46:eb665509682a

simplified the matrix calculation and removed two quaternion normalizations that were probably not needed
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 08 Mar 2013 04:54:05 +0200
parents
children 3c2428cb38f7
line source
1 src = $(wildcard *.c)
2 obj = $(src:.c=.o)
3 bin = test
5 CFLAGS = -pedantic -Wall -g -I../src
6 LDFLAGS = -L.. -lanim -lvmath $(libgl) -lm
8 ifeq ($(shell uname -s), Darwin)
9 libgl = -framework OpenGL -framework GLUT
10 else
11 libgl = -lGL -lGLU -lglut
12 endif
14 $(bin): $(obj) ../libanim.a
15 $(CC) -o $@ $(obj) $(LDFLAGS)
17 .PHONY: clean
18 clean:
19 rm -f $(obj) $(bin)