goat3d
annotate libs/openctm/Makefile @ 58:d317eb4f83da
- made everything compile properly on windows again
- removed libanim/libvmath, we'll use them as external dependencies
- added new maxgoat_stub 3dsmax plugin project. Gets loaded as a max plugin and
loads the actual maxgoat (and later maxgoat_anim) exporters on demand, to
allow reloading the actual exporters without having to restart 3dsmax (which
takes AGES).
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 25 Mar 2014 03:19:55 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@14 | 1 src = $(wildcard *.c) $(wildcard liblzma/*.c) |
nuclear@14 | 2 obj = $(src:.c=.o) |
nuclear@14 | 3 lib = libopenctm.a |
nuclear@14 | 4 |
nuclear@14 | 5 ifneq ($(shell uname -s), Darwin) |
nuclear@14 | 6 pic = -fPIC |
nuclear@14 | 7 endif |
nuclear@14 | 8 |
nuclear@14 | 9 CFLAGS = -g -Iliblzma $(pic) |
nuclear@14 | 10 |
nuclear@14 | 11 $(lib): $(obj) |
nuclear@14 | 12 $(AR) rcs $@ $(obj) |
nuclear@14 | 13 |
nuclear@14 | 14 .PHONY: clean |
nuclear@14 | 15 clean: |
nuclear@14 | 16 rm -f $(obj) $(lib) |