~gunnarhj/ubuntu/wily/ibus/pt_PT-compose

« back to all changes in this revision

Viewing changes to bindings/vala/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Osamu Aoki
  • Date: 2012-02-12 14:08:49 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20120212140849-c2qz4herqz6cu8pk
Tags: 1.4.1-1
* Remove old patches included in the upstream.
* Revert pkglibexec patch by Kees Cook with old automake1.11-2
  workaround and use configure option --libexec.
* Add doc-base support and preinst for documentation location
  migration.
* Fix 'ibus-1.0' not found error using patch by Daiki Ueno.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
GTK3_IM_MODULEDIR = @GTK3_IM_MODULEDIR@
176
176
GTK3_LIBS = @GTK3_LIBS@
177
177
GTKDOC_CHECK = @GTKDOC_CHECK@
 
178
GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
 
179
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
178
180
GTKDOC_MKPDF = @GTKDOC_MKPDF@
179
181
GTKDOC_REBASE = @GTKDOC_REBASE@
180
182
HTML_DIR = @HTML_DIR@
264
266
SHELL = @SHELL@
265
267
STRIP = @STRIP@
266
268
USE_NLS = @USE_NLS@
 
269
VAPIGEN = @VAPIGEN@
267
270
VERSION = @VERSION@
268
271
X11_CFLAGS = @X11_CFLAGS@
269
272
X11_LIBS = @X11_LIBS@
331
334
        ibus-@IBUS_API_VERSION@.deps \
332
335
        $(NULL)
333
336
 
 
337
 
 
338
# Don't rebuild vapi every time gir is updated.
 
339
vapi_deps = \
 
340
        $(srcdir)/IBus-1.0.metadata \
 
341
        $(srcdir)/IBus-1.0-custom.vala \
 
342
        | \
 
343
        $(top_srcdir)/src/IBus-@IBUS_API_VERSION@.gir \
 
344
        $(NULL)
 
345
 
 
346
EXTRA_DIST = \
 
347
        IBus-1.0.metadata \
 
348
        IBus-1.0-custom.vala \
 
349
        $(NULL)
 
350
 
 
351
MAINTAINERCLEANFILES = ibus-@IBUS_API_VERSION@.vapi
334
352
all: all-am
335
353
 
336
354
.SUFFIXES:
459
477
maintainer-clean-generic:
460
478
        @echo "This command is intended for maintainers to use"
461
479
        @echo "it deletes files that may require special tools to rebuild."
 
480
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
462
481
clean: clean-am
463
482
 
464
483
clean-am: clean-generic clean-libtool mostlyclean-am
540
559
        uninstall uninstall-am uninstall-dist_vapiDATA
541
560
 
542
561
 
543
 
ibus-@IBUS_API_VERSION@.vapi:
544
 
        vapigen --library ibus-@IBUS_API_VERSION@ \
 
562
ibus-@IBUS_API_VERSION@.vapi: $(vapi_deps)
 
563
        $(AM_V_GEN) $(VAPIGEN) --library ibus-@IBUS_API_VERSION@ \
545
564
                        --pkg gio-2.0 \
546
 
                        --metadata=ibus-@IBUS_API_VERSION@/ibus-@IBUS_API_VERSION@.metadata \
547
 
                        ibus-@IBUS_API_VERSION@/ibus-@IBUS_API_VERSION@.gi \
548
 
                        ibus-@IBUS_API_VERSION@/ibus-@IBUS_API_VERSION@-custom.vala
549
 
 
550
 
generate-vala:
551
 
        vala-gen-introspect ibus-@IBUS_API_VERSION@ ibus-@IBUS_API_VERSION@
 
565
                        --metadatadir=$(srcdir) \
 
566
                        $(top_srcdir)/src/IBus-@IBUS_API_VERSION@.gir \
 
567
                        $(srcdir)/IBus-1.0-custom.vala
552
568
 
553
569
-include $(top_srcdir)/git.mk
554
570