summaryrefslogtreecommitdiff
path: root/backends/oss/Makefile.am
blob: d9e1fa703321b82a86c523c8dbfab0c52a1f4892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
NULL =

backenddir = $(libdir)/libmatemixer

backend_LTLIBRARIES = libmatemixer-oss.la

AM_CPPFLAGS =							\
	-I$(top_srcdir)						\
	-DG_LOG_DOMAIN=\"libmatemixer-oss\"			\
	$(GLIB_CFLAGS)						\
	$(OSS_CFLAGS)						\
	$(NULL)

libmatemixer_oss_la_CFLAGS =					\
	$(WARN_CFLAGS)						\
	$(NULL)

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                                    \
	oss-switch.c                                            \
	oss-switch.h                                            \
	oss-switch-option.c                                     \
	oss-switch-option.h                                     \
	oss-types.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