summaryrefslogtreecommitdiff
path: root/src/plugin_common/Makefile.lite
blob: 4977c8adcdadb854ec63e4ffd0ae32d7bdb60f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# GNU makefile
#

topdir = ../..

LIB_NAME = libplugin_common
INCLUDES = -I./include -I$(topdir)/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 \
	id3v2.o \
	replaygain_synthesis.o \
	vorbiscomment.o

include $(topdir)/build/lib.mk

# DO NOT DELETE THIS LINE -- make depend depends on it.