comparison src/flac113/plugin_common/Makefile @ 103:117bc56d906b trunk

[svn] flac -> flac113
author nenolod
date Mon, 23 Oct 2006 19:51:39 -0700
parents src/flac/plugin_common/Makefile@a19f24790f3c
children
comparison
equal deleted inserted replaced
102:aff1cf3e86dd 103:117bc56d906b
1 include ../../../mk/rules.mk
2 include ../../../mk/init.mk
3
4 CFLAGS += $(PICFLAGS) -I.. -I../../..
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 \
14 tags.h \
15 replaygain.h
16
17 SOURCES = \
18 charset.c \
19 dither.c \
20 tags.c \
21 replaygain.c
22
23 OBJECTS = ${SOURCES:.c=.o}
24
25 libplugin_common.a: $(OBJECTS)
26 $(AR) cq $@ $(OBJECTS)
27
28 include ../../../mk/objective.mk