summaryrefslogtreecommitdiff
path: root/libmatemixer/Makefile.am
blob: 59f0e63adcf31e209ebdb52744220ea698d83cf2 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
lib_LTLIBRARIES = libmatemixer.la

AM_CPPFLAGS =                                                   \
        -I$(top_srcdir)                                         \
        -I$(top_srcdir)/libmatemixer                            \
        -DG_LOG_DOMAIN=\"libmatemixer\"                         \
        -DLIBMATEMIXER_BACKEND_DIR=\"$(libdir)/libmatemixer\"

libmatemixer_includedir = $(includedir)/mate-mixer/libmatemixer

libmatemixer_include_HEADERS =                                  \
        matemixer.h                                             \
        matemixer-app-info.h                                    \
        matemixer-context.h                                     \
        matemixer-device.h                                      \
        matemixer-device-switch.h                               \
        matemixer-enums.h                                       \
        matemixer-enum-types.h                                  \
        matemixer-stored-control.h                              \
        matemixer-stream.h                                      \
        matemixer-stream-control.h                              \
        matemixer-stream-switch.h                               \
        matemixer-stream-toggle.h                               \
        matemixer-switch.h                                      \
        matemixer-switch-option.h                               \
        matemixer-types.h                                       \
        matemixer-version.h

libmatemixer_la_CFLAGS = $(GLIB_CFLAGS)

libmatemixer_la_SOURCES =                                       \
        matemixer.c                                             \
        matemixer-private.h                                     \
        matemixer-app-info.c                                    \
        matemixer-app-info-private.h                            \
        matemixer-backend.c                                     \
        matemixer-backend.h                                     \
        matemixer-backend-module.c                              \
        matemixer-backend-module.h                              \
        matemixer-context.c                                     \
        matemixer-device.c                                      \
        matemixer-device-switch.c                               \
        matemixer-enum-types.c                                  \
        matemixer-stored-control.c                              \
        matemixer-stream.c                                      \
        matemixer-stream-private.h                              \
        matemixer-stream-control.c                              \
        matemixer-stream-control-private.h                      \
        matemixer-stream-switch.c                               \
        matemixer-stream-toggle.c                               \
        matemixer-switch.c                                      \
        matemixer-switch-private.h                              \
        matemixer-switch-option.c                               \
        matemixer-switch-option-private.h

libmatemixer_la_LIBADD = $(GLIB_LIBS)

libmatemixer_la_LDFLAGS =                                       \
        -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)    \
        -no-undefined                                           \
        -export-dynamic

-include $(top_srcdir)/git.mk