~ubuntu-branches/ubuntu/oneiric/libpeas/oneiric

« back to all changes in this revision

Viewing changes to tests/libpeas-gtk/plugins/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Martin Pitt, Oliver Sauder
  • Date: 2011-09-05 08:41:48 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: package-import@ubuntu.com-20110905084148-u4qhltt1ipo2frj9
Tags: 1.1.3-0ubuntu1
[ Martin Pitt ]
* New upstream release:
  - Link against pygobject 3. (LP: #839712)
  - Do not cast pointers to unsigned integers.
* Drop debian/patches/gint_is_not_gtype, upstream now.
* debian/control.in: Bump python-gobject-dev build dependency to >= 2.90 as
  per upstream configure.ac.
* debian/control.in: Move valac-0.12 to valac to use 0.14.

[ Oliver Sauder ]
* Added peas-gtk vapi file libpeas-gtk-1.0.vapi (LP: #825834) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        $(top_srcdir)/configure.ac
50
50
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
51
51
        $(ACLOCAL_M4)
52
 
mkinstalldirs = $(install_sh) -d
 
52
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
53
53
CONFIG_HEADER = $(top_builddir)/config.h
54
54
CONFIG_CLEAN_FILES =
55
55
CONFIG_CLEAN_VPATH_FILES =
121
121
DEFS = @DEFS@
122
122
DEPDIR = @DEPDIR@
123
123
DISABLE_DEPRECATED = @DISABLE_DEPRECATED@
 
124
DLLTOOL = @DLLTOOL@
124
125
DSYMUTIL = @DSYMUTIL@
125
126
DUMPBIN = @DUMPBIN@
126
127
ECHO_C = @ECHO_C@
144
145
GOBJECT_REQUIRED = @GOBJECT_REQUIRED@
145
146
GREP = @GREP@
146
147
GTKDOC_CHECK = @GTKDOC_CHECK@
147
 
GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
148
 
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
149
148
GTKDOC_MKPDF = @GTKDOC_MKPDF@
150
149
GTKDOC_REBASE = @GTKDOC_REBASE@
151
150
GTK_REQUIRED = @GTK_REQUIRED@
190
189
LT_REVISION = @LT_REVISION@
191
190
MAINT = @MAINT@
192
191
MAKEINFO = @MAKEINFO@
 
192
MANIFEST_TOOL = @MANIFEST_TOOL@
193
193
MKDIR_P = @MKDIR_P@
194
194
MSGFMT = @MSGFMT@
195
195
MSGFMT_015 = @MSGFMT_015@
217
217
PEAS_MINOR_VERSION = @PEAS_MINOR_VERSION@
218
218
PEAS_VERSION = @PEAS_VERSION@
219
219
PKG_CONFIG = @PKG_CONFIG@
220
 
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
221
 
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
222
220
PLUGIN_LIBTOOL_FLAGS = @PLUGIN_LIBTOOL_FLAGS@
223
221
POSUB = @POSUB@
224
222
PYTHON = @PYTHON@
248
246
abs_srcdir = @abs_srcdir@
249
247
abs_top_builddir = @abs_top_builddir@
250
248
abs_top_srcdir = @abs_top_srcdir@
 
249
ac_ct_AR = @ac_ct_AR@
251
250
ac_ct_CC = @ac_ct_CC@
252
251
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
253
252
am__include = @am__include@
283
282
libexecdir = @libexecdir@
284
283
localedir = @localedir@
285
284
localstatedir = @localstatedir@
286
 
lt_ECHO = @lt_ECHO@
287
285
mandir = @mandir@
288
286
mkdir_p = @mkdir_p@
289
287
oldincludedir = @oldincludedir@
323
321
              exit 1;; \
324
322
          esac; \
325
323
        done; \
326
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/libpeas-gtk/plugins/Makefile'; \
 
324
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/libpeas-gtk/plugins/Makefile'; \
327
325
        $(am__cd) $(top_srcdir) && \
328
 
          $(AUTOMAKE) --foreign tests/libpeas-gtk/plugins/Makefile
 
326
          $(AUTOMAKE) --gnu tests/libpeas-gtk/plugins/Makefile
329
327
.PRECIOUS: Makefile
330
328
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
331
329
        @case '$?' in \
576
574
        @echo "it deletes files that may require special tools to rebuild."
577
575
clean: clean-recursive
578
576
 
579
 
clean-am: clean-generic clean-libtool mostlyclean-am
 
577
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
580
578
 
581
579
distclean: distclean-recursive
582
580
        -rm -f Makefile
645
643
 
646
644
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
647
645
        all all-am all-local check check-am clean clean-generic \
648
 
        clean-libtool ctags ctags-recursive distclean \
 
646
        clean-libtool clean-local ctags ctags-recursive distclean \
649
647
        distclean-generic distclean-libtool distclean-tags distdir dvi \
650
648
        dvi-am html html-am info info-am install install-am \
651
649
        install-data install-data-am install-dvi install-dvi-am \
672
670
           fi ; \
673
671
         done
674
672
 
 
673
clean-local:
 
674
        @test -z "$(noinst_PLUGIN)" || \
 
675
         test $(srcdir) = $(builddir) || \
 
676
         for plugin in $(noinst_PLUGIN) ; do \
 
677
           if test -e $(builddir)/$$plugin ; then \
 
678
             rm -f $(builddir)/$$plugin ; \
 
679
             # hack to cleanup .pyc files \
 
680
             if test -e $(builddir)/$${plugin}c ; then \
 
681
               rm -f $(builddir)/$${plugin}c ; \
 
682
             fi ; \
 
683
           fi ; \
 
684
         done
 
685
 
675
686
# Tell versions [3.59,3.63) of GNU make to not export all variables.
676
687
# Otherwise a system limit (for SysV at least) may be exceeded.
677
688
.NOEXPORT: