blob: c192cfb3ffad6049348bc10c022419285dcc8385 (
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
45
46
47
48
49
|
backenddir = $(libdir)/libmatemixer
backend_LTLIBRARIES = libmatemixer-alsa.la
AM_CPPFLAGS = \
-Wno-unknown-pragmas \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\"libmatemixer-alsa\"
libmatemixer_alsa_la_CFLAGS = \
$(GLIB_CFLAGS) \
$(ALSA_CFLAGS)
libmatemixer_alsa_la_SOURCES = \
alsa-backend.c \
alsa-backend.h \
alsa-constants.c \
alsa-constants.h \
alsa-device.c \
alsa-device.h \
alsa-element.c \
alsa-element.h \
alsa-stream.c \
alsa-stream.h \
alsa-stream-control.c \
alsa-stream-control.h \
alsa-stream-input-control.c \
alsa-stream-input-control.h \
alsa-stream-output-control.c \
alsa-stream-output-control.h \
alsa-switch.c \
alsa-switch.h \
alsa-switch-option.c \
alsa-switch-option.h \
alsa-toggle.c \
alsa-toggle.h \
alsa-types.h
libmatemixer_alsa_la_LIBADD = \
$(GLIB_LIBS) \
$(ALSA_LIBS)
libmatemixer_alsa_la_LDFLAGS = \
-avoid-version \
-no-undefined \
-export-dynamic \
-module
-include $(top_srcdir)/git.mk
|