Files
flac/src/plugin_common/Makefile.vc

27 lines
572 B
Makefile
Raw Normal View History

2002-08-23 06:28:59 +00:00
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
!endif
C_FILES= \
canonical_tag.c \
2002-08-27 05:36:09 +00:00
charset.c \
dither.c \
id3v1.c
2002-08-23 06:28:59 +00:00
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