initial import, still more work to be done...
[platform/upstream/flac.git] / src / libOggFLAC / Makefile.vc
1 #  libOggFLAC - Free Lossless Audio Codec + Ogg library\r
2 #  Copyright (C) 2002  Josh Coalson\r
3 #\r
4 #  This library is free software; you can redistribute it and/or\r
5 #  modify it under the terms of the GNU Library General Public\r
6 #  License as published by the Free Software Foundation; either\r
7 #  version 2 of the License, or (at your option) any later version.\r
8 #\r
9 #  This library is distributed in the hope that it will be useful,\r
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
12 #  Library General Public License for more details.\r
13 #\r
14 #  You should have received a copy of the GNU Library General Public\r
15 #  License along with this library; if not, write to the\r
16 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,\r
17 #  Boston, MA  02111-1307, USA.\r
18 \r
19 !include <win32.mak>\r
20 \r
21 !IFDEF DEBUG\r
22 .c.obj:\r
23         $(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<\r
24 !else\r
25 .c.obj:\r
26         $(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $<\r
27 !endif\r
28 \r
29 C_FILES= \\r
30         file_decoder.c \\r
31         seekable_stream_decoder.c \\r
32         stream_decoder.c \\r
33         stream_encoder.c\r
34 \r
35 OBJS= $(C_FILES:.c=.obj)\r
36 \r
37 all: libOggFLAC.lib\r
38 \r
39 libOggFLAC.lib: $(OBJS)\r
40         link.exe -lib /nodefaultlib -out:../../obj/lib/$*.lib $(OBJS)\r
41 \r
42 clean:\r
43         -del *.obj ia32\*.obj *.pch\r
44         -del ..\..\obj\lib\libOggFLAC.lib ..\..\obj\lib\libOggFLAC.pdb\r