summaryrefslogtreecommitdiff
path: root/backends/oss/Makefile.am
blob: 44caeb86b3315fd4ce720f8529a4d6be4caf2366 (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
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