comparison src/flac/plugin_common/Makefile @ 722:454ad11020ec trunk

[svn] * Delete flac112 * Rename flac113 -> flac * Change configure.ac
author js
date Sat, 24 Feb 2007 16:17:26 -0800
parents src/flac113/plugin_common/Makefile@117bc56d906b
children 5f53309bb7d8
comparison
equal deleted inserted replaced
721:574de61036a3 722:454ad11020ec
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