!include !IFDEF DEBUG .c.obj: $(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $< !else .c.obj: $(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $< !endif C_FILES= \ canonical_tag.c \ charset.c \ dither.c \ id3v1.c \ id3v2.c \ replaygain_synthesis.c \ vorbiscomment.c OBJS= $(C_FILES:.c=.obj) all: plugin_common.lib plugin_common.lib: $(OBJS) link.exe -lib /nodefaultlib -out:../../obj/lib/$*.lib $(OBJS) clean: -del *.obj *.pch -del ..\..\obj\lib\plugin_common.lib ..\..\obj\lib\plugin_common.pdb