2002-08-23 06:28:59 +00:00
|
|
|
!include <win32.mak>
|
|
|
|
|
|
|
|
|
|
!IFDEF DEBUG
|
|
|
|
|
.c.obj:
|
2002-11-22 07:50:26 +00:00
|
|
|
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DFLAC__NO_DLL -DSTRICT -YX /Od /D "_DEBUG" $<
|
2002-08-23 06:28:59 +00:00
|
|
|
!else
|
|
|
|
|
.c.obj:
|
2002-11-22 07:50:26 +00:00
|
|
|
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DFLAC__NO_DLL -DSTRICT -YX -DNODEBUG $<
|
2002-08-23 06:28:59 +00:00
|
|
|
!endif
|
|
|
|
|
|
|
|
|
|
C_FILES= \
|
|
|
|
|
canonical_tag.c \
|
2002-08-27 05:36:09 +00:00
|
|
|
charset.c \
|
|
|
|
|
dither.c \
|
2002-08-29 08:12:08 +00:00
|
|
|
id3v1.c \
|
2002-08-30 05:44:32 +00:00
|
|
|
id3v2.c \
|
2002-11-01 04:27:46 +00:00
|
|
|
replaygain_synthesis.c \
|
2002-08-30 05:44:32 +00:00
|
|
|
vorbiscomment.c
|
2002-08-23 06:28:59 +00:00
|
|
|
|
|
|
|
|
OBJS= $(C_FILES:.c=.obj)
|
|
|
|
|
|
2002-11-22 07:50:26 +00:00
|
|
|
all: plugin_common_static.lib
|
2002-08-23 06:28:59 +00:00
|
|
|
|
2002-11-22 07:50:26 +00:00
|
|
|
plugin_common_static.lib: $(OBJS)
|
|
|
|
|
link.exe -lib /nodefaultlib -out:../../obj/release/lib/$*.lib $(OBJS)
|
2002-08-23 06:28:59 +00:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
-del *.obj *.pch
|
2002-11-22 07:50:26 +00:00
|
|
|
-del ..\..\obj\release\lib\plugin_common_static.lib ..\..\obj\release\lib\plugin_common_static.pdb
|