*** empty log message ***
[platform/upstream/flac.git] / src / plugin_common / Makefile.vc
1 !include <win32.mak>\r
2 \r
3 !IFDEF DEBUG\r
4 .c.obj:\r
5         $(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<\r
6 !else\r
7 .c.obj:\r
8         $(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $<\r
9 !endif\r
10 \r
11 C_FILES= \\r
12         canonical_tag.c \\r
13         charset.c \\r
14         dither.c \\r
15         id3v1.c \\r
16         id3v2.c \\r
17         vorbiscomment.c\r
18 \r
19 OBJS= $(C_FILES:.c=.obj)\r
20 \r
21 all: plugin_common.lib\r
22 \r
23 plugin_common.lib: $(OBJS)\r
24         link.exe -lib /nodefaultlib -out:../../obj/lib/$*.lib $(OBJS)\r
25 \r
26 clean:\r
27         -del *.obj *.pch\r
28         -del ..\..\obj\lib\plugin_common.lib ..\..\obj\lib\plugin_common.pdb\r