~ubuntu-branches/debian/sid/cheese/sid

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Veri, Andrea Veri, Loïc Minier
  • Date: 2009-09-23 20:25:41 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090923202541-q9lr8b7ykic314xy
Tags: 2.28.0.1-1
[ Andrea Veri ]
* New upstream release.
* debian/control:
  - Bumped Standards-version to 3.8.3. No changes needed.
  - libgtk2.0-dev bumped to >= 2.17.4 as per configure.ac
    requirements.
  - libgnome-desktop-dev bumped to >= 2.26.0 as per configure.ac
    requirements.
  - added a B-D on x11proto-core-dev needed from multimedia keys
    to work properly.
* debian/copyright:
  - added missing copyright holders.
* debian/patches:
  - removed as long as it has no patches in it.
* debian/rules:
  - simple-patchsys include removed, there are no patches to be
    applied.

[ Loïc Minier ]
* Bdep on rarian-compat instead of scrollkeeper.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.2 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 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  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
6
7
# This Makefile.in is free software; the Free Software Foundation
7
8
# gives unlimited permission to copy and/or distribute it,
8
9
# with or without modifications, as long as this notice is preserved.
15
16
@SET_MAKE@
16
17
VPATH = @srcdir@
17
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
18
20
pkglibdir = $(libdir)/@PACKAGE@
19
 
pkgincludedir = $(includedir)/@PACKAGE@
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
20
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
23
install_sh_DATA = $(install_sh) -c -m 644
22
24
install_sh_PROGRAM = $(install_sh) -c
46
48
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
47
49
CONFIG_HEADER = cheese-config.h
48
50
CONFIG_CLEAN_FILES =
 
51
CONFIG_CLEAN_VPATH_FILES =
 
52
AM_V_GEN = $(am__v_GEN_$(V))
 
53
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
54
am__v_GEN_0 = @echo "  GEN   " $@;
 
55
AM_V_at = $(am__v_at_$(V))
 
56
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
57
am__v_at_0 = @
49
58
SOURCES =
50
59
DIST_SOURCES =
51
60
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
57
66
        ps-recursive uninstall-recursive
58
67
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
59
68
  distclean-recursive maintainer-clean-recursive
 
69
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
70
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
71
        distdir dist dist-all distcheck
60
72
ETAGS = etags
61
73
CTAGS = ctags
62
74
DIST_SUBDIRS = $(SUBDIRS)
64
76
distdir = $(PACKAGE)-$(VERSION)
65
77
top_distdir = $(distdir)
66
78
am__remove_distdir = \
67
 
  { test ! -d $(distdir) \
68
 
    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
69
 
         && rm -fr $(distdir); }; }
 
79
  { test ! -d "$(distdir)" \
 
80
    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
 
81
         && rm -fr "$(distdir)"; }; }
 
82
am__relativize = \
 
83
  dir0=`pwd`; \
 
84
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
85
  sed_rest='s,^[^/]*/*,,'; \
 
86
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
87
  sed_butlast='s,/*[^/]*$$,,'; \
 
88
  while test -n "$$dir1"; do \
 
89
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
90
    if test "$$first" != "."; then \
 
91
      if test "$$first" = ".."; then \
 
92
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
93
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
94
      else \
 
95
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
96
        if test "$$first2" = "$$first"; then \
 
97
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
98
        else \
 
99
          dir2="../$$dir2"; \
 
100
        fi; \
 
101
        dir0="$$dir0"/"$$first"; \
 
102
      fi; \
 
103
    fi; \
 
104
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
105
  done; \
 
106
  reldir="$$dir2"
70
107
DIST_ARCHIVES = $(distdir).tar.gz
71
108
GZIP_ENV = --best
72
109
distuninstallcheck_listfiles = find . -type f -print
75
112
ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
76
113
ALL_LINGUAS = @ALL_LINGUAS@
77
114
AMTAR = @AMTAR@
 
115
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
78
116
AR = @AR@
79
117
AUTOCONF = @AUTOCONF@
80
118
AUTOHEADER = @AUTOHEADER@
113
151
GMSGFMT = @GMSGFMT@
114
152
GREP = @GREP@
115
153
HELP_DIR = @HELP_DIR@
116
 
HILDON_CFLAGS = @HILDON_CFLAGS@
117
 
HILDON_LIBS = @HILDON_LIBS@
118
154
INSTALL = @INSTALL@
119
155
INSTALL_DATA = @INSTALL_DATA@
120
156
INSTALL_PROGRAM = @INSTALL_PROGRAM@
153
189
PACKAGE_NAME = @PACKAGE_NAME@
154
190
PACKAGE_STRING = @PACKAGE_STRING@
155
191
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
192
PACKAGE_URL = @PACKAGE_URL@
156
193
PACKAGE_VERSION = @PACKAGE_VERSION@
157
194
PATH_SEPARATOR = @PATH_SEPARATOR@
158
195
PKG_CONFIG = @PKG_CONFIG@
241
278
        @for dep in $?; do \
242
279
          case '$(am__configure_deps)' in \
243
280
            *$$dep*) \
244
 
              echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
245
 
              cd $(srcdir) && $(AUTOMAKE) --gnu  \
 
281
              echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
 
282
              $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
246
283
                && exit 0; \
247
284
              exit 1;; \
248
285
          esac; \
249
286
        done; \
250
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
251
 
        cd $(top_srcdir) && \
252
 
          $(AUTOMAKE) --gnu  Makefile
 
287
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
 
288
        $(am__cd) $(top_srcdir) && \
 
289
          $(AUTOMAKE) --gnu Makefile
253
290
.PRECIOUS: Makefile
254
291
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
255
292
        @case '$?' in \
265
302
        $(SHELL) ./config.status --recheck
266
303
 
267
304
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
268
 
        cd $(srcdir) && $(AUTOCONF)
 
305
        $(am__cd) $(srcdir) && $(AUTOCONF)
269
306
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
270
 
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
 
307
        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
 
308
$(am__aclocal_m4_deps):
271
309
 
272
310
cheese-config.h: stamp-h1
273
311
        @if test ! -f $@; then \
279
317
        @rm -f stamp-h1
280
318
        cd $(top_builddir) && $(SHELL) ./config.status cheese-config.h
281
319
$(srcdir)/cheese-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
282
 
        cd $(top_srcdir) && $(AUTOHEADER)
 
320
        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
283
321
        rm -f stamp-h1
284
322
        touch $@
285
323
 
319
357
          else \
320
358
            local_target="$$target"; \
321
359
          fi; \
322
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
360
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
323
361
          || eval $$failcom; \
324
362
        done; \
325
363
        if test "$$dot_seen" = "no"; then \
353
391
          else \
354
392
            local_target="$$target"; \
355
393
          fi; \
356
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
394
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
357
395
          || eval $$failcom; \
358
396
        done && test -z "$$fail"
359
397
tags-recursive:
360
398
        list='$(SUBDIRS)'; for subdir in $$list; do \
361
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
399
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
362
400
        done
363
401
ctags-recursive:
364
402
        list='$(SUBDIRS)'; for subdir in $$list; do \
365
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
403
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
366
404
        done
367
405
 
368
406
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
377
415
 
378
416
TAGS: tags-recursive $(HEADERS) $(SOURCES) cheese-config.h.in $(TAGS_DEPENDENCIES) \
379
417
                $(TAGS_FILES) $(LISP)
380
 
        tags=; \
 
418
        set x; \
381
419
        here=`pwd`; \
382
420
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
383
421
          include_option=--etags-include; \
389
427
        list='$(SUBDIRS)'; for subdir in $$list; do \
390
428
          if test "$$subdir" = .; then :; else \
391
429
            test ! -f $$subdir/TAGS || \
392
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
430
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
393
431
          fi; \
394
432
        done; \
395
433
        list='$(SOURCES) $(HEADERS) cheese-config.h.in $(LISP) $(TAGS_FILES)'; \
398
436
          done | \
399
437
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
400
438
              END { if (nonempty) { for (i in files) print i; }; }'`; \
401
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
439
        shift; \
 
440
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
402
441
          test -n "$$unique" || unique=$$empty_fix; \
403
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
404
 
            $$tags $$unique; \
 
442
          if test $$# -gt 0; then \
 
443
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
444
              "$$@" $$unique; \
 
445
          else \
 
446
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
447
              $$unique; \
 
448
          fi; \
405
449
        fi
406
450
ctags: CTAGS
407
451
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) cheese-config.h.in $(TAGS_DEPENDENCIES) \
408
452
                $(TAGS_FILES) $(LISP)
409
 
        tags=; \
410
453
        list='$(SOURCES) $(HEADERS) cheese-config.h.in $(LISP) $(TAGS_FILES)'; \
411
454
        unique=`for i in $$list; do \
412
455
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
413
456
          done | \
414
457
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
415
458
              END { if (nonempty) { for (i in files) print i; }; }'`; \
416
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
459
        test -z "$(CTAGS_ARGS)$$unique" \
417
460
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
418
 
             $$tags $$unique
 
461
             $$unique
419
462
 
420
463
GTAGS:
421
464
        here=`$(am__cd) $(top_builddir) && pwd` \
422
 
          && cd $(top_srcdir) \
423
 
          && gtags -i $(GTAGS_ARGS) $$here
 
465
          && $(am__cd) $(top_srcdir) \
 
466
          && gtags -i $(GTAGS_ARGS) "$$here"
424
467
 
425
468
distclean-tags:
426
469
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
427
470
 
428
471
distdir: $(DISTFILES)
429
472
        $(am__remove_distdir)
430
 
        test -d $(distdir) || mkdir $(distdir)
 
473
        test -d "$(distdir)" || mkdir "$(distdir)"
431
474
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
432
475
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
433
476
        list='$(DISTFILES)'; \
443
486
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
444
487
          if test -d $$d/$$file; then \
445
488
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
489
            if test -d "$(distdir)/$$file"; then \
 
490
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
491
            fi; \
446
492
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
447
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
493
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
494
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
448
495
            fi; \
449
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
496
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
450
497
          else \
451
 
            test -f $(distdir)/$$file \
452
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
498
            test -f "$(distdir)/$$file" \
 
499
            || cp -p $$d/$$file "$(distdir)/$$file" \
453
500
            || exit 1; \
454
501
          fi; \
455
502
        done
456
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
503
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
457
504
          if test "$$subdir" = .; then :; else \
458
505
            test -d "$(distdir)/$$subdir" \
459
506
            || $(MKDIR_P) "$(distdir)/$$subdir" \
460
507
            || exit 1; \
461
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
462
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
463
 
            (cd $$subdir && \
 
508
          fi; \
 
509
        done
 
510
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
511
          if test "$$subdir" = .; then :; else \
 
512
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
513
            $(am__relativize); \
 
514
            new_distdir=$$reldir; \
 
515
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
516
            $(am__relativize); \
 
517
            new_top_distdir=$$reldir; \
 
518
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
519
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
520
            ($(am__cd) $$subdir && \
464
521
              $(MAKE) $(AM_MAKEFLAGS) \
465
 
                top_distdir="$$top_distdir" \
466
 
                distdir="$$distdir/$$subdir" \
 
522
                top_distdir="$$new_top_distdir" \
 
523
                distdir="$$new_distdir" \
467
524
                am__remove_distdir=: \
468
525
                am__skip_length_check=: \
 
526
                am__skip_mode_fix=: \
469
527
                distdir) \
470
528
              || exit 1; \
471
529
          fi; \
473
531
        $(MAKE) $(AM_MAKEFLAGS) \
474
532
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
475
533
          dist-hook
476
 
        -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
534
        -test -n "$(am__skip_mode_fix)" \
 
535
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
477
536
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
478
537
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
479
538
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
480
 
        || chmod -R a+r $(distdir)
 
539
        || chmod -R a+r "$(distdir)"
481
540
dist-gzip: distdir
482
541
        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
483
542
        $(am__remove_distdir)
490
549
        tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
491
550
        $(am__remove_distdir)
492
551
 
 
552
dist-xz: distdir
 
553
        tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
 
554
        $(am__remove_distdir)
 
555
 
493
556
dist-tarZ: distdir
494
557
        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
495
558
        $(am__remove_distdir)
518
581
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
519
582
        *.tar.lzma*) \
520
583
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
584
        *.tar.xz*) \
 
585
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
521
586
        *.tar.Z*) \
522
587
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
523
588
        *.shar.gz*) \
529
594
        mkdir $(distdir)/_build
530
595
        mkdir $(distdir)/_inst
531
596
        chmod a-w $(distdir)
 
597
        test -d $(distdir)/_build || exit 0; \
532
598
        dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
533
599
          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
534
 
          && cd $(distdir)/_build \
 
600
          && am__cwd=`pwd` \
 
601
          && $(am__cd) $(distdir)/_build \
535
602
          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
536
603
            $(DISTCHECK_CONFIGURE_FLAGS) \
537
604
          && $(MAKE) $(AM_MAKEFLAGS) \
553
620
          && rm -rf "$$dc_destdir" \
554
621
          && $(MAKE) $(AM_MAKEFLAGS) dist \
555
622
          && rm -rf $(DIST_ARCHIVES) \
556
 
          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
 
623
          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
 
624
          && cd "$$am__cwd" \
 
625
          || exit 1
557
626
        $(am__remove_distdir)
558
627
        @(echo "$(distdir) archives ready for distribution: "; \
559
628
          list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
560
629
          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
561
630
distuninstallcheck:
562
 
        @cd $(distuninstallcheck_dir) \
 
631
        @$(am__cd) '$(distuninstallcheck_dir)' \
563
632
        && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
564
633
           || { echo "ERROR: files left after uninstall:" ; \
565
634
                if test -n "$(DESTDIR)"; then \
601
670
 
602
671
distclean-generic:
603
672
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
673
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
604
674
        -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
605
675
 
606
676
maintainer-clean-generic:
622
692
 
623
693
html: html-recursive
624
694
 
 
695
html-am:
 
696
 
625
697
info: info-recursive
626
698
 
627
699
info-am:
630
702
 
631
703
install-dvi: install-dvi-recursive
632
704
 
 
705
install-dvi-am:
 
706
 
633
707
install-exec-am:
634
708
 
635
709
install-html: install-html-recursive
636
710
 
 
711
install-html-am:
 
712
 
637
713
install-info: install-info-recursive
638
714
 
 
715
install-info-am:
 
716
 
639
717
install-man:
640
718
 
641
719
install-pdf: install-pdf-recursive
642
720
 
 
721
install-pdf-am:
 
722
 
643
723
install-ps: install-ps-recursive
644
724
 
 
725
install-ps-am:
 
726
 
645
727
installcheck-am:
646
728
 
647
729
maintainer-clean: maintainer-clean-recursive
664
746
 
665
747
uninstall-am:
666
748
 
667
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
668
 
        install-strip
 
749
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
 
750
        ctags-recursive install-am install-strip tags-recursive
669
751
 
670
752
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
671
753
        all all-am am--refresh check check-am clean clean-generic \
672
754
        clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
673
 
        dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-zip \
674
 
        distcheck distclean distclean-generic distclean-hdr \
 
755
        dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
 
756
        dist-zip distcheck distclean distclean-generic distclean-hdr \
675
757
        distclean-libtool distclean-tags distcleancheck distdir \
676
758
        distuninstallcheck dvi dvi-am html html-am info info-am \
677
759
        install install-am install-data install-data-am install-dvi \
699
781
        else \
700
782
                echo A git clone is required to generate a ChangeLog >&2; \
701
783
        fi
 
784
 
702
785
# Tell versions [3.59,3.63) of GNU make to not export all variables.
703
786
# Otherwise a system limit (for SysV at least) may be exceeded.
704
787
.NOEXPORT: