~ubuntu-branches/ubuntu/natty/gnome-keyring/natty

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-02-16 19:00:06 UTC
  • mfrom: (1.1.58 upstream)
  • Revision ID: james.westby@ubuntu.com-20100216190006-cqpnic4zxlkmmi0o
Tags: 2.29.90git20100218-0ubuntu1
Updated to a git snapshot version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
37
37
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
38
38
        $(srcdir)/Makefile.in $(srcdir)/config.h.in \
39
39
        $(top_srcdir)/configure AUTHORS COPYING COPYING.LIB ChangeLog \
40
 
        INSTALL NEWS TODO compile config.guess config.sub depcomp \
 
40
        INSTALL NEWS compile config.guess config.sub depcomp \
41
41
        install-sh ltmain.sh missing mkinstalldirs
42
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
43
43
am__aclocal_m4_deps = $(top_srcdir)/configure.in
71
71
        distdir dist dist-all distcheck
72
72
ETAGS = etags
73
73
CTAGS = ctags
74
 
DIST_SUBDIRS = . gp11 egg gcr library pkcs11 daemon tool tests pam po \
75
 
        docs
 
74
DIST_SUBDIRS = . gp11 egg gcr pkcs11 daemon tool tests pam po docs
76
75
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
77
76
distdir = $(PACKAGE)-$(VERSION)
78
77
top_distdir = $(distdir)
146
145
EGREP = @EGREP@
147
146
EXEEXT = @EXEEXT@
148
147
FGREP = @FGREP@
149
 
GCONF_CFLAGS = @GCONF_CFLAGS@
150
 
GCONF_LIBS = @GCONF_LIBS@
151
148
GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
152
149
GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
153
150
GCR_LT_RELEASE = @GCR_LT_RELEASE@
211
208
OBJEXT = @OBJEXT@
212
209
OTOOL = @OTOOL@
213
210
OTOOL64 = @OTOOL64@
 
211
P11_TESTS_CFLAGS = @P11_TESTS_CFLAGS@
 
212
P11_TESTS_LIBS = @P11_TESTS_LIBS@
214
213
PACKAGE = @PACKAGE@
215
214
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
216
215
PACKAGE_NAME = @PACKAGE_NAME@
297
296
        gp11 \
298
297
        egg \
299
298
        gcr \
300
 
        library \
301
299
        pkcs11 \
302
300
        daemon \
303
301
        tool \
310
308
        intltool-extract.in \
311
309
        intltool-merge.in \
312
310
        intltool-update.in \
313
 
        keyring-intro.txt \
314
311
        ChangeLog.old \
315
312
        HACKING
316
313
 
394
391
#     (which will cause the Makefiles to be regenerated when you run `make');
395
392
# (2) otherwise, pass the desired values on the `make' command line.
396
393
$(RECURSIVE_TARGETS):
397
 
        @failcom='exit 1'; \
 
394
        @fail= failcom='exit 1'; \
398
395
        for f in x $$MAKEFLAGS; do \
399
396
          case $$f in \
400
397
            *=* | --[!k]*);; \
419
416
        fi; test -z "$$fail"
420
417
 
421
418
$(RECURSIVE_CLEAN_TARGETS):
422
 
        @failcom='exit 1'; \
 
419
        @fail= failcom='exit 1'; \
423
420
        for f in x $$MAKEFLAGS; do \
424
421
          case $$f in \
425
422
            *=* | --[!k]*);; \
586
583
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
587
584
          dist-hook
588
585
        -test -n "$(am__skip_mode_fix)" \
589
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
586
        || find "$(distdir)" -type d ! -perm -755 \
 
587
                -exec chmod u+rwx,go+rx {} \; -o \
590
588
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
591
589
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
592
590
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
630
628
distcheck: dist
631
629
        case '$(DIST_ARCHIVES)' in \
632
630
        *.tar.gz*) \
633
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
631
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
634
632
        *.tar.bz2*) \
635
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
633
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
636
634
        *.tar.lzma*) \
637
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
635
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
638
636
        *.tar.xz*) \
639
637
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
640
638
        *.tar.Z*) \
641
639
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
642
640
        *.shar.gz*) \
643
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
641
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
644
642
        *.zip*) \
645
643
          unzip $(distdir).zip ;;\
646
644
        esac