diff options
author | Michal Ratajsky <[email protected]> | 2014-08-12 05:06:12 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-08-12 05:06:12 +0200 |
commit | 1e1847069eb58c2b62f2b3c11e1e9adf3a17ebde (patch) | |
tree | 4bcd30db2bdf4032c4a49844570ce4227cf2510e /backends/oss/Makefile.am | |
parent | 7396148c328d9f2a0d933374547c7e93a46b8efa (diff) | |
parent | 6c6d4239ddc807e922df3874654f99eea291aadb (diff) | |
download | libmatemixer-1e1847069eb58c2b62f2b3c11e1e9adf3a17ebde.tar.bz2 libmatemixer-1e1847069eb58c2b62f2b3c11e1e9adf3a17ebde.tar.xz |
Merge branch 'oss-alsa'
Diffstat (limited to 'backends/oss/Makefile.am')
-rw-r--r-- | backends/oss/Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/backends/oss/Makefile.am b/backends/oss/Makefile.am new file mode 100644 index 0000000..44caeb8 --- /dev/null +++ b/backends/oss/Makefile.am @@ -0,0 +1,34 @@ +backenddir = $(libdir)/libmatemixer + +backend_LTLIBRARIES = libmatemixer-oss.la + +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-oss\" + +libmatemixer_oss_la_CFLAGS = \ + $(GLIB_CFLAGS) \ + $(OSS_CFLAGS) + +libmatemixer_oss_la_SOURCES = \ + oss-common.h \ + oss-backend.c \ + oss-backend.h \ + oss-device.c \ + oss-device.h \ + oss-stream.c \ + oss-stream.h \ + oss-stream-control.c \ + oss-stream-control.h + +libmatemixer_oss_la_LIBADD = \ + $(GLIB_LIBS) \ + $(OSS_LIBS) + +libmatemixer_oss_la_LDFLAGS = \ + -avoid-version \ + -no-undefined \ + -export-dynamic \ + -module + +-include $(top_srcdir)/git.mk |