view src/flac/plugin_common/Makefile.in @ 17:cf1054422f81 trunk

[svn] - fix a lot of paths - reduce more makefiles
author nenolod
date Mon, 18 Sep 2006 03:38:44 -0700
parents 3da1b8942b8b
children
line wrap: on
line source

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