add id3v2.c

This commit is contained in:
Josh Coalson 2002-08-29 08:12:08 +00:00
parent e0b6c8c5df
commit d426aee019
2 changed files with 6 additions and 3 deletions

View File

@ -3,13 +3,15 @@
#
LIB_NAME = libplugin-common
INCLUDES = -I../../include
INCLUDES = -I../../include -I$(HOME)/local/include
DEFINES = -DFLAC__HAS_ID3LIB -DID3LIB_MAJOR=3 -DID3LIB_MINOR=8 -DID3LIB_PATCH=0
OBJS = \
canonical_tag.o \
charset.o \
dither.o \
id3v1.o
id3v1.o \
id3v2.o
include ../../build/lib.mk

View File

@ -12,7 +12,8 @@ C_FILES= \
canonical_tag.c \
charset.c \
dither.c \
id3v1.c
id3v1.c \
id3v2.c
OBJS= $(C_FILES:.c=.obj)