goat3d

view libs/anim/Makefile @ 29:3d669155709d

- switched the unix build to use the internal vmath/anim as well - fixed a memory corruption issue which was caused by including the system-wide installed version of the anim.h header file - started the ass2goat assimp->goat3d converter
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 29 Sep 2013 21:53:03 +0300
parents
children
line source
1 src = $(wildcard *.c)
2 obj = $(src:.c=.o)
3 lib = libanim.a
5 ifneq ($(shell uname -s), Darwin)
6 pic = -fPIC
7 endif
9 CFLAGS = -pedantic -Wall -g $(pic)
10 CXXFLAGS = -pedantic -Wall -g $(pic)
12 $(lib): $(obj)
13 $(AR) rcs $@ $(obj)
15 .PHONY: clean
16 clean:
17 rm -f $(obj) $(lib)