-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
41 lines (34 loc) · 899 Bytes
/
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
NULL =
SUBDIRS =
INCLUDES = \
-DG_LOG_DOMAIN=\"gvfs-dav-mount\" \
-DDATADIR=\"$(datadir)\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-I$(top_srcdir) \
-I$(top_builddir) \
$(WARN_CFLAGS) \
-Werror \
$(DISABLE_DEPRECATED_CFLAGS) \
$(GTK_CFLAGS) \
$(XML_CFLAGS) \
$(SOUP_CFLAGS) \
$(NULL)
bin_PROGRAMS = gvfs-dav-mount
gvfs_dav_mount_SOURCES = \
gvfsdavmount.c \
$(NULL)
gvfs_dav_mount_LDADD = \
$(GTK_LIBS) \
$(XML_LIBS) \
$(SOUP_LIBS) \
$(NULL)
EXTRA_DIST = \
intltool-extract.in \
intltool-update.in \
intltool-merge.in \
$(NULL)
STCLEANFILES = \
intltool-extract \
intltool-update \
intltool-merge \
$(NULL)