summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rw-r--r--data/Makefile.am.inc11
2 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 1eac38a..5981077 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ dist_triggers_SCRIPTS = \
triggers/desktop-database.trigger \
$(NULL)
-EXTRA_DIST = data/org.freedesktop.portal.Documents.xml data/org.freedesktop.systemd1.xml data/org.freedesktop.XdgApp.xml
+EXTRA_DIST =
noinst_LTLIBRARIES = libglnx.la
libglnx_srcpath := $(srcdir)/libglnx
@@ -45,6 +45,7 @@ libglnx_libs := $(BASE_LIBS)
include libglnx/Makefile-libglnx.am.inc
include lib/Makefile.am.inc
+include data/Makefile.am.inc
include app/Makefile.am.inc
include session-helper/Makefile.am.inc
include dbus-proxy/Makefile.am.inc
diff --git a/data/Makefile.am.inc b/data/Makefile.am.inc
new file mode 100644
index 0000000..a47819b
--- /dev/null
+++ b/data/Makefile.am.inc
@@ -0,0 +1,11 @@
+introspectiondir = $(datadir)/dbus-1/interfaces
+introspection_DATA = \
+ data/org.freedesktop.portal.Documents.xml \
+ data/org.freedesktop.XdgApp.xml \
+ $(NULL)
+
+EXTRA_DIST += \
+ data/org.freedesktop.portal.Documents.xml \
+ data/org.freedesktop.systemd1.xml \
+ data/org.freedesktop.XdgApp.xml \
+ $(NULL)