~ubuntu-branches/ubuntu/saucy/gnome-online-accounts/saucy

« back to all changes in this revision

Viewing changes to src/daemon/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-08-20 22:37:44 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120820223744-ndi1s9124mef09ak
Tags: 3.5.90-0ubuntu1
* New upstream release.
* debian/control.in:
  - Build-depend on krb5-config, libgcr-3-dev, and libkrb5-dev
* debian/rules:
  - Enable Kerberos provider
* debian/libgoa-1.0-0.symbols: Added new symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
1
NULL =
3
2
 
4
3
INCLUDES =                                                      \
5
4
        -I$(top_builddir)/src -I$(top_srcdir)/src               \
 
5
        -I$(top_builddir)/goaidentity                           \
 
6
        -I$(top_srcdir)/goaidentity                             \
6
7
        -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\"               \
7
8
        -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\"               \
8
9
        -DPACKAGE_DATA_DIR=\""$(datadir)"\"                     \
16
17
        $(WARN_CFLAGS)                                          \
17
18
        $(NULL)
18
19
 
 
20
BUILT_SOURCES = $(NULL)
 
21
EXTRA_DIST = $(NULL)
 
22
 
19
23
libexec_PROGRAMS = goa-daemon
20
24
 
21
25
goa_daemon_SOURCES =                                            \
46
50
        $(REST_LIBS)                                            \
47
51
        $(NULL)
48
52
 
 
53
if BUILD_KERBEROS
 
54
goa_daemon_LDADD +=                                             \
 
55
        $(top_builddir)/src/goaidentity/libgoaidentity.la       \
 
56
        $(KRB5_LIBS)                                            \
 
57
        $(GCR_LIBS)                                             \
 
58
        $(NULL)
 
59
endif
 
60
 
49
61
clean-local :
50
62
        rm -f *~
51
63