blob: 929536af49d3eaa5e2d3ceb59809b087723039a7 (
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
|
include $(top_srcdir)/Makefile.gtester
giomodules_PROGRAMS = libdconfsettings.so
libdconfsettings_so_LDADD = \
../engine/libdconf-engine-shared.a \
../gvdb/libgvdb-shared.a \
../gdbus/libdconf-gdbus-thread-shared.a \
../common/libdconf-common-hidden.a \
../shm/libdconf-shm-shared.a \
$(gio_LIBS)
libdconfsettings_so_CFLAGS = $(gio_CFLAGS) -fPIC -DPIC
libdconfsettings_so_LDFLAGS = -shared
libdconfsettings_so_SOURCES = \
dconfcontext.h \
dconfcontext.c \
dconfsettingsbackend.c
uninstall-hook:
if test -z "$(DESTDIR)" -a "$(gio_QUERYMODULES)" != "no" ; then \
$(gio_QUERYMODULES) $(giomodulesdir) ; \
fi
install-data-hook:
if test -z "$(DESTDIR)" -a "$(gio_QUERYMODULES)" != "no" ; then \
$(gio_QUERYMODULES) $(giomodulesdir) ; \
fi
|