diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/flac/plugin_common/Makefile	Sat Feb 24 16:17:26 2007 -0800
@@ -0,0 +1,28 @@
+include ../../../mk/rules.mk
+include ../../../mk/init.mk
+
+CFLAGS += $(PICFLAGS) -I.. -I../../..
+
+OBJECTIVE_LIBS_NOINST = libplugin_common.a
+
+noinst_HEADERS = \
+	all.h \
+	charset.h \
+	defs.h \
+	dither.h \
+	locale_hack.h \
+	tags.h \
+	replaygain.h
+
+SOURCES = \
+	charset.c \
+	dither.c \
+	tags.c \
+	replaygain.c
+
+OBJECTS = ${SOURCES:.c=.o}
+
+libplugin_common.a: $(OBJECTS)
+	$(AR) cq $@ $(OBJECTS)
+
+include ../../../mk/objective.mk