goat3d
annotate libs/tinyxml2/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 |
rev | line source |
---|---|
nuclear@19 | 1 obj = tinyxml2.o |
nuclear@19 | 2 lib = libtinyxml2.a |
nuclear@19 | 3 |
nuclear@19 | 4 ifneq ($(shell uname -s), Darwin) |
nuclear@19 | 5 pic = -fPIC |
nuclear@19 | 6 endif |
nuclear@19 | 7 |
nuclear@19 | 8 CXXFLAGS = -pedantic -Wall -g $(pic) |
nuclear@19 | 9 |
nuclear@19 | 10 $(lib): $(obj) |
nuclear@19 | 11 $(AR) rcs $@ $(obj) |
nuclear@19 | 12 |
nuclear@19 | 13 .PHONY: clean |
nuclear@19 | 14 clean: |
nuclear@19 | 15 rm -f $(obj) $(lib) |