~ubuntu-branches/debian/jessie/sqlheavy/jessie

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Package Import Robot
  • Author(s): Devid Antonio Filoni
  • Date: 2012-05-17 09:47:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120517094717-ue17pqaud5tywjj5
Tags: 0.1.1-1
* New upstream release (Closes: #663320).
* Fix debug-package-should-be-priority-extra lintian warning.
* debian/control: switch to vala-0.16 in Build-Depends field.
* debian/libsqlheavy-dev.install, debian/libsqlheavygtk-dev.install:
  install files in vala-0.16 dir.
* Update libsqlheavy0.1-0.symbols.amd64 file.
* debian/rules: update override_dh_makeshlibs target.
* Bump Standards-Version to 3.9.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        install-sh ltmain.sh missing
42
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
43
43
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
44
 
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
45
 
        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
46
 
        $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
 
44
        $(top_srcdir)/m4/introspection.m4 $(top_srcdir)/m4/libtool.m4 \
 
45
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
46
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
47
        $(top_srcdir)/configure.ac
47
48
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
48
49
        $(ACLOCAL_M4)
49
50
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
130
131
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
131
132
  done; \
132
133
  reldir="$$dir2"
133
 
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
134
134
GZIP_ENV = --best
 
135
DIST_ARCHIVES = $(distdir).tar.xz
135
136
distuninstallcheck_listfiles = find . -type f -print
136
137
distcleancheck_listfiles = find . -type f -print
137
138
ACLOCAL = @ACLOCAL@
175
176
INSTALL_PROGRAM = @INSTALL_PROGRAM@
176
177
INSTALL_SCRIPT = @INSTALL_SCRIPT@
177
178
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
179
INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
 
180
INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
 
181
INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
 
182
INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
 
183
INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
178
184
LD = @LD@
179
185
LDFLAGS = @LDFLAGS@
180
186
LIBOBJS = @LIBOBJS@
305
311
        $(NULL)
306
312
 
307
313
DISTCHECK_CONFIGURE_FLAGS = \
308
 
        --enable-introspection=no \
309
 
        $(NULL)
 
314
        --enable-valadoc=no \
 
315
        $(NULL)
310
316
 
311
317
all: all-recursive
312
318
 
580
586
dist-gzip: distdir
581
587
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
582
588
        $(am__remove_distdir)
 
589
 
583
590
dist-bzip2: distdir
584
591
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
585
592
        $(am__remove_distdir)
587
594
dist-lzma: distdir
588
595
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
589
596
        $(am__remove_distdir)
590
 
 
591
597
dist-xz: distdir
592
598
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
593
599
        $(am__remove_distdir)
606
612
        $(am__remove_distdir)
607
613
 
608
614
dist dist-all: distdir
609
 
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
610
 
        tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
 
615
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
611
616
        $(am__remove_distdir)
612
617
 
613
618
# This target untars the dist file and tries a VPATH configuration.  Then