22
|
1 include ../../../mk/rules.mk
|
|
2 include ../../../mk/init.mk
|
|
3
|
29
|
4 CFLAGS += $(PICFLAGS) -I.. -I../../..
|
22
|
5
|
|
6 OBJECTIVE_LIBS_NOINST = libplugin_common.a
|
|
7
|
|
8 noinst_HEADERS = \
|
|
9 all.h \
|
|
10 charset.h \
|
|
11 defs.h \
|
|
12 dither.h \
|
|
13 locale_hack.h \
|
97
|
14 tags.h \
|
|
15 replaygain.h
|
22
|
16
|
|
17 SOURCES = \
|
|
18 charset.c \
|
|
19 dither.c \
|
97
|
20 tags.c \
|
|
21 replaygain.c
|
22
|
22
|
|
23 OBJECTS = ${SOURCES:.c=.o}
|
|
24
|
|
25 libplugin_common.a: $(OBJECTS)
|
|
26 $(AR) cq $@ $(OBJECTS)
|
|
27
|
|
28 include ../../../mk/objective.mk
|