view src/alsa/Makefile @ 879:c7daa70ffe7e trunk

[svn] alsa output plugin: use snd_pcm_wait in place of raw polls to handle device readyness; this allows to use alsa plugins such as jackplug; requires testing
author giacomo
date Mon, 19 Mar 2007 13:18:28 -0700
parents 550c9e382cf8
children bc676d17cf7f
line wrap: on
line source

include ../../mk/rules.mk
include ../../mk/init.mk

OBJECTIVE_LIBS = libALSA$(SHARED_SUFFIX)

noinst_HEADERS = alsa.h

LIBDIR = $(plugindir)/$(OUTPUT_PLUGIN_DIR)

LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(ALSA_LIBS) -lpthread
SOURCES = alsa.c about.c audio.c configure.c init.c

OBJECTS = ${SOURCES:.c=.o}

CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ALSA_CFLAGS) \
	-I../../intl -I../..

include ../../mk/objective.mk