goat3d
diff Makefile @ 50:0be413ac2e0a
ass2goat compiles...
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 16 Jan 2014 19:27:09 +0200 |
parents | 3d669155709d |
children | ca549434dc95 |
line diff
1.1 --- a/Makefile Thu Jan 16 19:13:45 2014 +0200 1.2 +++ b/Makefile Thu Jan 16 19:27:09 2014 +0200 1.3 @@ -37,7 +37,7 @@ 1.4 CC = clang 1.5 CXX = clang++ 1.6 CXXFLAGS = -pedantic -Wall $(dbg) $(opt) $(pic) $(extinc) 1.7 -LDFLAGS = $(extlibs) 1.8 +LDFLAGS = $(extlibs) -lpthread 1.9 1.10 .PHONY: all 1.11 all: $(lib_so) $(lib_a) 1.12 @@ -48,15 +48,19 @@ 1.13 $(lib_a): $(obj) $(extlibs) 1.14 $(AR) rcs $@ $(obj) $(extlibs) 1.15 1.16 +.PHONY: $(openctm) 1.17 $(openctm): 1.18 $(MAKE) -C libs/openctm 1.19 1.20 +.PHONY: $(tinyxml2) 1.21 $(tinyxml2): 1.22 $(MAKE) -C libs/tinyxml2 1.23 1.24 +.PHONY: $(vmath) 1.25 $(vmath): 1.26 $(MAKE) -C libs/vmath 1.27 1.28 +.PHONY: $(anim) 1.29 $(anim): 1.30 $(MAKE) -C libs/anim 1.31