-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile.am
89 lines (64 loc) · 2.09 KB
/
Makefile.am
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
XSLTPROC = xsltproc --xinclude --nonet
XMLS = $(wildcard introspection/*.xml)
if WITH_DOCS
all:
# Figure out if we need ASYNC_INTROSPECT and add it later
GENERATED_FILES = \
docs/spec.html
docs/spec.html: $(XMLS) introspection/all.xml doc-generator.xsl
@install -d docs
$(XSLTPROC) doc-generator.xsl introspection/all.xml > $@
all: $(GENERATED_FILES)
CLEANFILES = $(GENERATED_FILES)
endif
SUBDIRS = marshallers libqcdm src plugins introspection po policy test
if WITH_POLKIT
SUBDIRS += policy
endif
dbusservicedir = $(DBUS_SYS_DIR)
dbusservice_DATA = org.freedesktop.ModemManager.conf
dbusservice_file_polkit = org.freedesktop.ModemManager.conf.polkit
dbusservice_file_nopolkit = org.freedesktop.ModemManager.conf.nopolkit
org.freedesktop.ModemManager.conf:
if WITH_POLKIT
cp -f $(top_srcdir)/$(dbusservice_file_polkit) $(dbusservice_DATA)
else
cp -f $(top_srcdir)/$(dbusservice_file_nopolkit) $(dbusservice_DATA)
endif
dbusactivationdir = $(datadir)/dbus-1/system-services
dbusactivation_in_files = org.freedesktop.ModemManager.service.in
dbusactivation_DATA = $(dbusactivation_in_files:.service.in=.service)
includedir = @includedir@/mm
include_HEADERS = include/mm-modem.h
include/mm-modem.h: $(XMLS) introspection/all.xml header-generator.xsl
@install -d include
$(XSLTPROC) header-generator.xsl introspection/all.xml > $@
%service: %service.in
$(edit) $< >$@
xmldir = $(datadir)/dbus-1/interfaces
xml_DATA = $(XMLS)
edit = @sed \
-e 's|@sbindir[@]|$(sbindir)|g' \
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
-e 's|@localstatedir[@]|$(localstatedir)|g' \
-e 's|@libexecdir[@]|$(libexecdir)|g'
DISTCHECK_CONFIGURE_FLAGS = --with-udev-base-dir=$dc_install_base --with-tests=yes
INTLTOOL_FILES = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in
DISTCLEANFILES = \
$(dbusactivation_DATA) \
$(dbusservice_DATA) \
intltool-extract \
intltool-merge \
intltool-update \
po/.intltool-merge-cache
EXTRA_DIST = \
doc-generator.xsl \
header-generator.xsl \
$(dbusactivation_in_files) \
$(INTLTOOL_FILES) \
$(dbusservice_file_polkit) \
$(dbusservice_file_nopolkit)
ACLOCAL_AMFLAGS = -I m4