~ubuntu-branches/ubuntu/raring/colord/raring

« back to all changes in this revision

Viewing changes to client/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-11-16 11:35:43 UTC
  • mfrom: (13.1.1 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121116113543-f2jk3ovt1woorco9
Tags: 0.1.23-0ubuntu1
* New upstream bugfix release (LP: #1053696)
* debian/control:
  - Use standards version 3.9.3
  - Drop build-depends on libgtk-3-dev
  - Build-depend on valac-0.16
  - Drop unnecessary build depends on intltool, autotools-dev, autopoint
  - Remove colord-gtk packages that are now in a different source package
* debian/libcolord-gtk1.symbols:
  - Updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
        $(GTK_CFLAGS)                                   \
4
4
        -I$(top_srcdir)                                 \
5
5
        -I$(top_srcdir)/libcolord                       \
6
 
        -I$(top_srcdir)/libcolord-gtk                   \
7
6
        -DG_LOG_DOMAIN=\"Cd\"                           \
8
7
        -DCD_COMPILATION                                \
9
8
        -DLIBEXECDIR=\"$(libexecdir)\"                  \
15
14
COLORD_LIBS =                                           \
16
15
        $(top_builddir)/libcolord/libcolord.la
17
16
 
18
 
COLORD_GTK_LIBS =                                       \
19
 
        $(top_builddir)/libcolord-gtk/libcolord-gtk.la
20
 
 
21
17
noinst_LIBRARIES = libclientprivate.a
22
18
libclientprivate_a_SOURCES =                            \
23
19
        cd-common.c                                     \
66
62
cd_create_profile_CFLAGS =                              \
67
63
        $(WARNINGFLAGS_C)
68
64
 
69
 
if HAVE_GTK
70
 
noinst_PROGRAMS =                                       \
71
 
        colord-convert
72
 
 
73
 
colord_convert_SOURCES =                                \
74
 
        cd-convert.c
75
 
 
76
 
colord_convert_LDADD =                                  \
77
 
        $(LCMS_LIBS)                                    \
78
 
        $(COLORD_LIBS)                                  \
79
 
        $(COLORD_GTK_LIBS)                              \
80
 
        $(GTK_LIBS)                                     \
81
 
        $(GLIB_LIBS)                                    \
82
 
        -lm
83
 
 
84
 
colord_convert_CFLAGS =                                 \
85
 
        $(WARNINGFLAGS_C)
86
 
endif
87
 
 
88
65
bashcompletiondir = ${sysconfdir}/bash_completion.d
89
66
dist_bashcompletion_DATA = colormgr-completion.bash
90
67