~maozhou/ubuntu/utopic/tomboy/bug-12345

« back to all changes in this revision

Viewing changes to Tomboy/Addins/Sketching/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2012-09-25 11:01:34 UTC
  • mfrom: (1.5.18) (4.3.21 experimental)
  • Revision ID: package-import@ubuntu.com-20120925110134-ql4qysklh5ppa6yh
Tags: 1.12.0-1ubuntu1
* Rebase on Debian experimental, remaining changes
  + Use dh-translations
  + Ubuntu patches:
    - Add app indicator support
    - Use Ubuntu One as default sync server
    - Add initial note about Ubuntu One
    - Set save button sensitive when needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.1 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.6 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6
 
# Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
 
6
# Foundation, Inc.
7
7
# This Makefile.in is free software; the Free Software Foundation
8
8
# gives unlimited permission to copy and/or distribute it,
9
9
# with or without modifications, as long as this notice is preserved.
16
16
@SET_MAKE@
17
17
 
18
18
VPATH = @srcdir@
 
19
am__make_dryrun = \
 
20
  { \
 
21
    am__dry=no; \
 
22
    case $$MAKEFLAGS in \
 
23
      *\\[\ \   ]*) \
 
24
        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
 
25
          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
 
26
      *) \
 
27
        for am__flg in $$MAKEFLAGS; do \
 
28
          case $$am__flg in \
 
29
            *=*|--*) ;; \
 
30
            *n*) am__dry=yes; break;; \
 
31
          esac; \
 
32
        done;; \
 
33
    esac; \
 
34
    test $$am__dry = yes; \
 
35
  }
19
36
pkgdatadir = $(datadir)/@PACKAGE@
20
37
pkgincludedir = $(includedir)/@PACKAGE@
21
38
pkglibdir = $(libdir)/@PACKAGE@
47
64
CONFIG_CLEAN_VPATH_FILES =
48
65
SOURCES =
49
66
DIST_SOURCES =
 
67
am__can_run_installinfo = \
 
68
  case $$AM_UPDATE_INFO_DIR in \
 
69
    n|no|NO) false;; \
 
70
    *) (install-info --version) >/dev/null 2>&1;; \
 
71
  esac
50
72
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
51
73
am__vpath_adj = case $$p in \
52
74
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
68
90
am__base_list = \
69
91
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
70
92
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
 
93
am__uninstall_files_from_dir = { \
 
94
  test -z "$$files" \
 
95
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
 
96
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
 
97
         $(am__cd) "$$dir" && rm -f $$files; }; \
 
98
  }
71
99
am__installdirs = "$(DESTDIR)$(addinsdir)"
72
100
DATA = $(addins_DATA)
73
101
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
331
359
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
332
360
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
333
361
        esac;
 
362
$(top_srcdir)/Makefile.include:
334
363
 
335
364
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
336
365
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
348
377
        -rm -rf .libs _libs
349
378
install-addinsDATA: $(addins_DATA)
350
379
        @$(NORMAL_INSTALL)
351
 
        test -z "$(addinsdir)" || $(MKDIR_P) "$(DESTDIR)$(addinsdir)"
352
380
        @list='$(addins_DATA)'; test -n "$(addinsdir)" || list=; \
 
381
        if test -n "$$list"; then \
 
382
          echo " $(MKDIR_P) '$(DESTDIR)$(addinsdir)'"; \
 
383
          $(MKDIR_P) "$(DESTDIR)$(addinsdir)" || exit 1; \
 
384
        fi; \
353
385
        for p in $$list; do \
354
386
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
355
387
          echo "$$d$$p"; \
363
395
        @$(NORMAL_UNINSTALL)
364
396
        @list='$(addins_DATA)'; test -n "$(addinsdir)" || list=; \
365
397
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
366
 
        test -n "$$files" || exit 0; \
367
 
        echo " ( cd '$(DESTDIR)$(addinsdir)' && rm -f" $$files ")"; \
368
 
        cd "$(DESTDIR)$(addinsdir)" && rm -f $$files
 
398
        dir='$(DESTDIR)$(addinsdir)'; $(am__uninstall_files_from_dir)
369
399
tags: TAGS
370
400
TAGS:
371
401
 
420
450
 
421
451
installcheck: installcheck-am
422
452
install-strip:
423
 
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
424
 
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
425
 
          `test -z '$(STRIP)' || \
426
 
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
453
        if test -z '$(STRIP)'; then \
 
454
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
455
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
456
              install; \
 
457
        else \
 
458
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
459
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
460
            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 
461
        fi
427
462
mostlyclean-generic:
428
463
 
429
464
clean-generic: