# HG changeset patch # User Matti Hamalainen # Date 1375711193 -10800 # Node ID a354578a41c6f3c69fa8e029eeeff1b00d817916 # Parent 083c73ceb716afa301cb11939d862cf52e45c6f3 Add library packages. diff -r 083c73ceb716 -r a354578a41c6 Makefile --- a/Makefile Mon Aug 05 16:54:46 2013 +0300 +++ b/Makefile Mon Aug 05 16:59:53 2013 +0300 @@ -56,9 +56,6 @@ $(FREETYPE_LDFLAGS) $(BOOST_LDFLAGS) \ $(LIBOGGPLAYER_LDFLAGS) -ADD_LIBS=\ - $(ASSIMP)lib/libassimp.so \ - libbass/libbass.so ### @@ -118,8 +115,13 @@ clean: $(RM) $(TARGETS) $(OBJPATH)*.o -assimp: - cd $(ASSIMP) && cmake . -DENABLE_BOOST_WORKAROUND=ON && make +$(ASSIMP)lib/libassimp.so: + unzip assimp--3.0.1270-source-only.zip && \ + cd $(ASSIMP) && \ + cmake . -DENABLE_BOOST_WORKAROUND=ON && make -build: assimp demo.bin $(ADD_LIBS) +libbass/libbass.so: + mkdir libbass/ && cd libbass && unzip ../bass24-linux.zip + +build: $(ASSIMP)lib/libassimp.so libbass/libbass.so demo.bin cp -d -p $(addsuffix *,$(ADD_LIBS)) lib/ diff -r 083c73ceb716 -r a354578a41c6 assimp--3.0.1270-source-only.zip Binary file assimp--3.0.1270-source-only.zip has changed diff -r 083c73ceb716 -r a354578a41c6 bass24-linux.zip Binary file bass24-linux.zip has changed