goat3d
view libs/vmath/Makefile @ 47:498ca7ac7047
- placed all the implementation stuff in the g3dimpl namespace
- added animation stuff to the public API
- started writing animation saving/loading
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 28 Dec 2013 06:47:39 +0200 |
parents | |
children |
line source
1 csrc = $(wildcard *.c)
2 ccsrc = $(wildcard *.cc)
3 obj = $(csrc:.c=.o) $(ccsrc:.cc=.o)
4 lib = libvmath.a
6 ifneq ($(shell uname -s), Darwin)
7 pic = -fPIC
8 endif
10 CFLAGS = -pedantic -Wall -g $(pic)
11 CXXFLAGS = -pedantic -Wall -g $(pic)
13 $(lib): $(obj)
14 $(AR) rcs $@ $(obj)
16 .PHONY: clean
17 clean:
18 rm -f $(obj) $(lib)