~ubuntu-branches/ubuntu/saucy/dee/saucy-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2012-02-03 11:38:57 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120203113857-a46h5kyigogedqy2
Tags: 1.0.2-0ubuntu1
* New upstream release.
  - DeeModel support insert_sorted() and find_sorted() (LP: #913128)
* debian/control:
  - requires now libicu-dev
* debian/libdee-1.0-4.symbols:
  - updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
POST_UNINSTALL = :
35
35
build_triplet = @build@
36
36
host_triplet = @host@
37
 
@WANT_TESTS_TRUE@am__append_1 = tests
 
37
@HAVE_ICU_TRUE@am__append_1 = dee-icu-1.0.pc
 
38
@WANT_TESTS_TRUE@am__append_2 = tests
38
39
subdir = .
39
40
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
40
41
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
41
 
        $(srcdir)/dee-1.0.pc.in $(top_srcdir)/configure AUTHORS \
42
 
        COPYING ChangeLog INSTALL NEWS TODO compile config.guess \
43
 
        config.sub depcomp install-sh ltmain.sh missing py-compile
 
42
        $(srcdir)/dee-1.0.pc.in $(srcdir)/dee-icu-1.0.pc.in \
 
43
        $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
 
44
        TODO compile config.guess config.sub depcomp install-sh \
 
45
        ltmain.sh missing py-compile
44
46
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
45
47
am__aclocal_m4_deps = $(top_srcdir)/build/autotools/gtk-doc.m4 \
46
48
        $(top_srcdir)/build/autotools/introspection.m4 \
56
58
 configure.lineno config.status.lineno
57
59
mkinstalldirs = $(install_sh) -d
58
60
CONFIG_HEADER = config.h
59
 
CONFIG_CLEAN_FILES = dee-1.0.pc
 
61
CONFIG_CLEAN_FILES = dee-icu-1.0.pc dee-1.0.pc
60
62
CONFIG_CLEAN_VPATH_FILES =
61
63
AM_V_GEN = $(am__v_GEN_$(V))
62
64
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
185
187
GTX_CFLAGS = @GTX_CFLAGS@
186
188
GTX_LIBS = @GTX_LIBS@
187
189
HTML_DIR = @HTML_DIR@
 
190
ICU_CFLAGS = @ICU_CFLAGS@
 
191
ICU_LIBS = @ICU_LIBS@
188
192
INSTALL = @INSTALL@
189
193
INSTALL_DATA = @INSTALL_DATA@
190
194
INSTALL_PROGRAM = @INSTALL_PROGRAM@
295
299
top_build_prefix = @top_build_prefix@
296
300
top_builddir = @top_builddir@
297
301
top_srcdir = @top_srcdir@
298
 
SUBDIRS = build src doc examples tools vapi bindings $(am__append_1)
 
302
SUBDIRS = build src doc examples tools vapi bindings $(am__append_2)
299
303
pkgconfigdir = $(libdir)/pkgconfig
300
 
pkgconfig_DATA = dee-1.0.pc
 
304
pkgconfig_DATA = dee-1.0.pc $(am__append_1)
301
305
CLEANFILES = dee-1.0.pc
302
306
DISTCLEANFILES = dee-1.0.pc
303
307
EXTRA_DIST = \
304
308
        autogen.sh \
305
309
        dee-1.0.pc.in \
 
310
        dee-icu-1.0.pc.in \
306
311
        COPYING.GPL
307
312
 
308
313
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection=no
361
366
 
362
367
distclean-hdr:
363
368
        -rm -f config.h stamp-h1
 
369
dee-icu-1.0.pc: $(top_builddir)/config.status $(srcdir)/dee-icu-1.0.pc.in
 
370
        cd $(top_builddir) && $(SHELL) ./config.status $@
364
371
dee-1.0.pc: $(top_builddir)/config.status $(srcdir)/dee-1.0.pc.in
365
372
        cd $(top_builddir) && $(SHELL) ./config.status $@
366
373