5f8648a46b
- add sndio backend playback under aucat server is pretty solid. for full-duplex, starting aucat with 'aucat -l -b 2048' and jackd with just 'jackd -d sndio' seems to work best for me. we want low latency anyway, right ;)
14 lines
295 B
Makefile
14 lines
295 B
Makefile
MAINTAINCLEANFILES = Makefile.in
|
|
|
|
AM_CFLAGS = $(JACK_CFLAGS)
|
|
|
|
plugindir = $(ADDON_DIR)
|
|
|
|
plugin_LTLIBRARIES = jack_sndio.la
|
|
|
|
jack_sndio_la_LDFLAGS = -module -avoid-version
|
|
jack_sndio_la_LIBADD = $(SNDIO_LIBS)
|
|
jack_sndio_la_SOURCES = sndio_driver.c sndio_driver.h
|
|
|
|
noinst_HEADERS = sndio_driver.h
|