blob: 3b66beb06ff4d8a6a0c6e68e4a8d228bf28839ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
AM_CFLAGS = -std=c89 -Wall -Wmissing-prototypes -Wwrite-strings
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/engine -I$(top_srcdir)/client $(gio_CFLAGS) -I$(top_srcdir)/dbus-1 $(dbus_CFLAGS)
noinst_PROGRAMS = paths gsettings dbus1
gsettings_LDADD = $(gio_LIBS)
dbus1_LDADD = -L../dbus-1 -ldconf-dbus-1 $(glib_LIBS)
paths_LDADD = $(gio_LIBS)
paths_SOURCES = \
../common/dconf-paths.c \
paths.c
|