diff src/flac112/plugin_common/Makefile @ 104:4b31176c198a trunk

[svn] - 1.1.2 compatible plugin (I HATE YOU FLAC PEOPLE)
author nenolod
date Mon, 23 Oct 2006 19:55:09 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/flac112/plugin_common/Makefile	Mon Oct 23 19:55:09 2006 -0700
@@ -0,0 +1,26 @@
+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
+
+SOURCES = \
+	charset.c \
+	dither.c \
+	tags.c
+
+OBJECTS = ${SOURCES:.c=.o}
+
+libplugin_common.a: $(OBJECTS)
+	$(AR) cq $@ $(OBJECTS)
+
+include ../../../mk/objective.mk