goat3d
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libs/anim/Makefile Sun Sep 29 21:53:03 2013 +0300 1.3 @@ -0,0 +1,17 @@ 1.4 +src = $(wildcard *.c) 1.5 +obj = $(src:.c=.o) 1.6 +lib = libanim.a 1.7 + 1.8 +ifneq ($(shell uname -s), Darwin) 1.9 + pic = -fPIC 1.10 +endif 1.11 + 1.12 +CFLAGS = -pedantic -Wall -g $(pic) 1.13 +CXXFLAGS = -pedantic -Wall -g $(pic) 1.14 + 1.15 +$(lib): $(obj) 1.16 + $(AR) rcs $@ $(obj) 1.17 + 1.18 +.PHONY: clean 1.19 +clean: 1.20 + rm -f $(obj) $(lib)