diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-10-28 06:13:33 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-10-28 06:13:33 +0000 |
commit | 5ce2fc0debc5a17fbd7f081af0a966f68875a833 (patch) | |
tree | dbe799d4fe166489d46f9762b47db0ec86016054 /externals/build/win/makefile | |
parent | 8c3cc6cd49451f97df98ae2bf917bbfaa277bbd6 (diff) |
added ogg lib; compiles with chaos objects added
svn path=/trunk/; revision=1146
Diffstat (limited to 'externals/build/win/makefile')
-rw-r--r-- | externals/build/win/makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/externals/build/win/makefile b/externals/build/win/makefile index ce887e02..bb880437 100644 --- a/externals/build/win/makefile +++ b/externals/build/win/makefile @@ -12,10 +12,12 @@ all: filelist.inc link.stamp $(EXTERNALS:.c=.dll) PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo VC="C:\Program Files\Microsoft Visual Studio\Vc98" +OGGPATH="C:\oggvorbis-win32sdk-1.0" SRCPATH=..\src PDPATH=..\..\..\pd -PDNTINCLUDE = /I. /I.. /I..\..\..\pd\src /I$(VC)\include /I..\..\creb\include +PDNTINCLUDE = /I. /I.. /I..\..\..\pd\src /I$(VC)\include \ + /I..\..\creb\include /I$(OGGPATH)/include PDNTLDIR = $(VC)\lib PDNTLIB = $(PDNTLDIR)\libc.lib \ @@ -24,7 +26,11 @@ PDNTLIB = $(PDNTLDIR)\libc.lib \ $(PDNTLDIR)\uuid.lib \ $(PDNTLDIR)\ws2_32.lib \ $(PDPATH)\bin\pthreadVC.lib \ - $(PDPATH)\bin\pd.lib + $(PDPATH)\bin\pd.lib \ + $(OGGPATH)\lib\vorbis.lib \ + $(OGGPATH)\lib\vorbisenc.lib \ + $(OGGPATH)\lib\vorbisfile.lib \ + $(OGGPATH)\lib\ogg.lib .c.dll: cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c |