From ecb7f9f99d3aa88d777040725a540f2620264817 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 9 Aug 2010 22:25:03 +0000 Subject: [PATCH] added VORBISLIBS in Makefile git-svn-id: svn://anubis/anaglym/trunk@301 99a6e188-d820-4881-8870-2d33a10e2619 --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d37b6e..515f1ae 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,8 @@ ODELIBS := $(shell ode-config --libs) SMPEGLIBS := $(shell smpeg-config --libs) +VORBISLIBS := -lvorbisfile + TOPLEVEL := $(shell pwd) ifeq ($(WINDOWS),1) @@ -56,7 +58,7 @@ endif export CPPFLAGS := $(LUAINCLUDE) $(SDLINCLUDE) $(ODEINCLUDE) $(FTGLINCLUDE) -I$(TOPLEVEL) export CFLAGS := $(CPPFLAGS) -O2 -Wall export CXXFLAGS := $(CFLAGS) -export LDFLAGS := $(LUALIBS) $(ODELIBS) $(GLLIBS) $(WINDOWSLIBS) $(SDLLIBS) $(FTGLLIBS) $(SMPEGLIBS) +export LDFLAGS := $(LUALIBS) $(ODELIBS) $(GLLIBS) $(WINDOWSLIBS) $(SDLLIBS) $(FTGLLIBS) $(SMPEGLIBS) $(VORBISLIBS) ifdef DEBUG CFLAGS += -g