goat3d
view libs/anim/Makefile @ 40:a5c5cec3cb88
- added mesh attribute and face append functions
- added Int4 constructor
- continued the blender exporter
- fixed a bug in clean_filename which made it produce unterminated strings
- renamed clean_filename to goat3d_clean_filename and made it extern
- added call to goat3d_clean_filename in the mesh XML export code to cleanup ctm filenames
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 13 Oct 2013 10:14:19 +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)