~peter-pearse/ubuntu/oneiric/x11-utils/prop001

« back to all changes in this revision

Viewing changes to luit/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2011-02-09 20:34:01 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110209203401-43knowb75duvo9td
Tags: 7.6+1
* Remove David Nusinow and Brice Goglin from Uploaders.  Thanks for your
  work!
* Drop Pre-Depends on x11-common.
* Bump Standards-Version to 3.9.1.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
37
37
#  PERFORMANCE OF THIS SOFTWARE.
38
38
 
39
 
 
40
39
VPATH = @srcdir@
41
40
pkgdatadir = $(datadir)/@PACKAGE@
42
41
pkgincludedir = $(includedir)/@PACKAGE@
63
62
        $(top_srcdir)/configure COPYING ChangeLog INSTALL config.guess \
64
63
        config.sub depcomp install-sh missing
65
64
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
66
 
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 
65
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
 
66
        $(top_srcdir)/configure.ac
67
67
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
68
68
        $(ACLOCAL_M4)
69
69
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
72
72
CONFIG_HEADER = config.h
73
73
CONFIG_CLEAN_FILES =
74
74
CONFIG_CLEAN_VPATH_FILES =
75
 
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appmandir)"
 
75
am__installdirs = "$(DESTDIR)$(bindir)"
76
76
PROGRAMS = $(bin_PROGRAMS)
77
77
am_luit_OBJECTS = charset.$(OBJEXT) iso2022.$(OBJEXT) locale.$(OBJEXT) \
78
78
        luit.$(OBJEXT) other.$(OBJEXT) parser.$(OBJEXT) sys.$(OBJEXT)
101
101
am__v_GEN_0 = @echo "  GEN   " $@;
102
102
SOURCES = $(luit_SOURCES)
103
103
DIST_SOURCES = $(luit_SOURCES)
104
 
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
105
 
am__vpath_adj = case $$p in \
106
 
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
107
 
    *) f=$$p;; \
108
 
  esac;
109
 
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
110
 
am__install_max = 40
111
 
am__nobase_strip_setup = \
112
 
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
113
 
am__nobase_strip = \
114
 
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
115
 
am__nobase_list = $(am__nobase_strip_setup); \
116
 
  for p in $$list; do echo "$$p $$p"; done | \
117
 
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
118
 
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
119
 
    if (++n[$$2] == $(am__install_max)) \
120
 
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
121
 
    END { for (dir in files) print dir, files[dir] }'
122
 
am__base_list = \
123
 
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
124
 
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
125
 
DATA = $(appman_DATA)
 
104
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
 
105
        html-recursive info-recursive install-data-recursive \
 
106
        install-dvi-recursive install-exec-recursive \
 
107
        install-html-recursive install-info-recursive \
 
108
        install-pdf-recursive install-ps-recursive install-recursive \
 
109
        installcheck-recursive installdirs-recursive pdf-recursive \
 
110
        ps-recursive uninstall-recursive
 
111
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
 
112
  distclean-recursive maintainer-clean-recursive
 
113
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
114
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
115
        distdir dist dist-all distcheck
126
116
ETAGS = etags
127
117
CTAGS = ctags
 
118
DIST_SUBDIRS = $(SUBDIRS)
128
119
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
129
120
distdir = $(PACKAGE)-$(VERSION)
130
121
top_distdir = $(distdir)
132
123
  { test ! -d "$(distdir)" \
133
124
    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
134
125
         && rm -fr "$(distdir)"; }; }
 
126
am__relativize = \
 
127
  dir0=`pwd`; \
 
128
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
129
  sed_rest='s,^[^/]*/*,,'; \
 
130
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
131
  sed_butlast='s,/*[^/]*$$,,'; \
 
132
  while test -n "$$dir1"; do \
 
133
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
134
    if test "$$first" != "."; then \
 
135
      if test "$$first" = ".."; then \
 
136
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
137
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
138
      else \
 
139
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
140
        if test "$$first2" = "$$first"; then \
 
141
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
142
        else \
 
143
          dir2="../$$dir2"; \
 
144
        fi; \
 
145
        dir0="$$dir0"/"$$first"; \
 
146
      fi; \
 
147
    fi; \
 
148
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
149
  done; \
 
150
  reldir="$$dir2"
135
151
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
136
152
GZIP_ENV = --best
137
153
distuninstallcheck_listfiles = find . -type f -print
184
200
LUIT_LIBS = @LUIT_LIBS@
185
201
MAINT = @MAINT@
186
202
MAKEINFO = @MAKEINFO@
 
203
MAN_SUBSTS = @MAN_SUBSTS@
187
204
MISC_MAN_DIR = @MISC_MAN_DIR@
188
205
MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@
189
206
MKDIR_P = @MKDIR_P@
190
207
OBJEXT = @OBJEXT@
 
208
OS_CFLAGS = @OS_CFLAGS@
191
209
PACKAGE = @PACKAGE@
192
210
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
193
211
PACKAGE_NAME = @PACKAGE_NAME@
197
215
PACKAGE_VERSION = @PACKAGE_VERSION@
198
216
PATH_SEPARATOR = @PATH_SEPARATOR@
199
217
PKG_CONFIG = @PKG_CONFIG@
 
218
SED = @SED@
200
219
SET_MAKE = @SET_MAKE@
201
220
SHELL = @SHELL@
202
221
STRIP = @STRIP@
203
222
VERSION = @VERSION@
 
223
XORG_MAN_PAGE = @XORG_MAN_PAGE@
204
224
abs_builddir = @abs_builddir@
205
225
abs_srcdir = @abs_srcdir@
206
226
abs_top_builddir = @abs_top_builddir@
251
271
top_build_prefix = @top_build_prefix@
252
272
top_builddir = @top_builddir@
253
273
top_srcdir = @top_srcdir@
254
 
AM_CFLAGS = $(CWARNFLAGS) $(LUIT_CFLAGS) \
 
274
SUBDIRS = man
 
275
AM_CFLAGS = \
 
276
        $(CWARNFLAGS)   \
 
277
        $(LUIT_CFLAGS)  \
 
278
        $(OS_CFLAGS)    \
255
279
        -DLOCALE_ALIAS_FILE=\"$(LOCALEALIASFILE)\"
256
280
 
257
281
luit_LDADD = $(LUIT_LIBS)
258
282
luit_SOURCES = \
259
 
        charset.c \
260
 
        charset.h \
261
 
        iso2022.c \
262
 
        iso2022.h \
263
 
        locale.c \
264
 
        luit.c \
265
 
        luit.h \
266
 
        other.c \
267
 
        other.h \
268
 
        parser.c \
269
 
        parser.h \
270
 
        sys.c \
 
283
        charset.c       \
 
284
        charset.h       \
 
285
        iso2022.c       \
 
286
        iso2022.h       \
 
287
        locale.c        \
 
288
        luit.c          \
 
289
        luit.h          \
 
290
        other.c         \
 
291
        other.h         \
 
292
        parser.c        \
 
293
        parser.h        \
 
294
        sys.c           \
271
295
        sys.h
272
296
 
273
 
appman_PRE = \
274
 
        luit.man
275
 
 
276
 
appmandir = $(APP_MAN_DIR)
277
 
appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
278
 
EXTRA_DIST = $(appman_PRE) 
279
297
MAINTAINERCLEANFILES = ChangeLog INSTALL
280
 
CLEANFILES = $(appman_DATA)
281
 
SED = sed
282
 
 
283
 
# Strings to replace in man pages
284
 
XORGRELSTRING = @PACKAGE_STRING@
285
 
XORGMANNAME = X Version 11
286
 
MAN_SUBSTS = \
287
 
        -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
288
 
        -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
289
 
        -e 's|__xservername__|Xorg|g' \
290
 
        -e 's|__xconfigfile__|xorg.conf|g' \
291
 
        -e 's|__localealiasfile__|$(LOCALEALIASFILE)|g' \
292
 
        -e 's|__projectroot__|$(prefix)|g' \
293
 
        -e 's|__apploaddir__|$(appdefaultdir)|' \
294
 
        -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
295
 
        -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \
296
 
        -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
297
 
        -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
298
 
        -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
299
 
 
300
 
SUFFIXES = .$(APP_MAN_SUFFIX) .man
301
298
all: config.h
302
 
        $(MAKE) $(AM_MAKEFLAGS) all-am
 
299
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
303
300
 
304
301
.SUFFIXES:
305
 
.SUFFIXES: .$(APP_MAN_SUFFIX) .man .c .o .obj
 
302
.SUFFIXES: .c .o .obj
306
303
am--refresh:
307
304
        @:
308
305
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
424
421
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
425
422
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
426
423
@am__fastdepCC_FALSE@   $(COMPILE) -c `$(CYGPATH_W) '$<'`
427
 
install-appmanDATA: $(appman_DATA)
428
 
        @$(NORMAL_INSTALL)
429
 
        test -z "$(appmandir)" || $(MKDIR_P) "$(DESTDIR)$(appmandir)"
430
 
        @list='$(appman_DATA)'; test -n "$(appmandir)" || list=; \
431
 
        for p in $$list; do \
432
 
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
433
 
          echo "$$d$$p"; \
434
 
        done | $(am__base_list) | \
435
 
        while read files; do \
436
 
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appmandir)'"; \
437
 
          $(INSTALL_DATA) $$files "$(DESTDIR)$(appmandir)" || exit $$?; \
438
 
        done
439
 
 
440
 
uninstall-appmanDATA:
441
 
        @$(NORMAL_UNINSTALL)
442
 
        @list='$(appman_DATA)'; test -n "$(appmandir)" || list=; \
443
 
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
444
 
        test -n "$$files" || exit 0; \
445
 
        echo " ( cd '$(DESTDIR)$(appmandir)' && rm -f" $$files ")"; \
446
 
        cd "$(DESTDIR)$(appmandir)" && rm -f $$files
 
424
 
 
425
# This directory's subdirectories are mostly independent; you can cd
 
426
# into them and run `make' without going through this Makefile.
 
427
# To change the values of `make' variables: instead of editing Makefiles,
 
428
# (1) if the variable is set in `config.status', edit `config.status'
 
429
#     (which will cause the Makefiles to be regenerated when you run `make');
 
430
# (2) otherwise, pass the desired values on the `make' command line.
 
431
$(RECURSIVE_TARGETS):
 
432
        @fail= failcom='exit 1'; \
 
433
        for f in x $$MAKEFLAGS; do \
 
434
          case $$f in \
 
435
            *=* | --[!k]*);; \
 
436
            *k*) failcom='fail=yes';; \
 
437
          esac; \
 
438
        done; \
 
439
        dot_seen=no; \
 
440
        target=`echo $@ | sed s/-recursive//`; \
 
441
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
442
          echo "Making $$target in $$subdir"; \
 
443
          if test "$$subdir" = "."; then \
 
444
            dot_seen=yes; \
 
445
            local_target="$$target-am"; \
 
446
          else \
 
447
            local_target="$$target"; \
 
448
          fi; \
 
449
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
450
          || eval $$failcom; \
 
451
        done; \
 
452
        if test "$$dot_seen" = "no"; then \
 
453
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
 
454
        fi; test -z "$$fail"
 
455
 
 
456
$(RECURSIVE_CLEAN_TARGETS):
 
457
        @fail= failcom='exit 1'; \
 
458
        for f in x $$MAKEFLAGS; do \
 
459
          case $$f in \
 
460
            *=* | --[!k]*);; \
 
461
            *k*) failcom='fail=yes';; \
 
462
          esac; \
 
463
        done; \
 
464
        dot_seen=no; \
 
465
        case "$@" in \
 
466
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
 
467
          *) list='$(SUBDIRS)' ;; \
 
468
        esac; \
 
469
        rev=''; for subdir in $$list; do \
 
470
          if test "$$subdir" = "."; then :; else \
 
471
            rev="$$subdir $$rev"; \
 
472
          fi; \
 
473
        done; \
 
474
        rev="$$rev ."; \
 
475
        target=`echo $@ | sed s/-recursive//`; \
 
476
        for subdir in $$rev; do \
 
477
          echo "Making $$target in $$subdir"; \
 
478
          if test "$$subdir" = "."; then \
 
479
            local_target="$$target-am"; \
 
480
          else \
 
481
            local_target="$$target"; \
 
482
          fi; \
 
483
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
484
          || eval $$failcom; \
 
485
        done && test -z "$$fail"
 
486
tags-recursive:
 
487
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
488
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
489
        done
 
490
ctags-recursive:
 
491
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
492
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
493
        done
447
494
 
448
495
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
449
496
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
455
502
        mkid -fID $$unique
456
503
tags: TAGS
457
504
 
458
 
TAGS:  $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
505
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
459
506
                $(TAGS_FILES) $(LISP)
460
507
        set x; \
461
508
        here=`pwd`; \
 
509
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
 
510
          include_option=--etags-include; \
 
511
          empty_fix=.; \
 
512
        else \
 
513
          include_option=--include; \
 
514
          empty_fix=; \
 
515
        fi; \
 
516
        list='$(SUBDIRS)'; for subdir in $$list; do \
 
517
          if test "$$subdir" = .; then :; else \
 
518
            test ! -f $$subdir/TAGS || \
 
519
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
 
520
          fi; \
 
521
        done; \
462
522
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
463
523
        unique=`for i in $$list; do \
464
524
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
477
537
          fi; \
478
538
        fi
479
539
ctags: CTAGS
480
 
CTAGS:  $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
540
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
481
541
                $(TAGS_FILES) $(LISP)
482
542
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
483
543
        unique=`for i in $$list; do \
529
589
            || exit 1; \
530
590
          fi; \
531
591
        done
 
592
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
593
          if test "$$subdir" = .; then :; else \
 
594
            test -d "$(distdir)/$$subdir" \
 
595
            || $(MKDIR_P) "$(distdir)/$$subdir" \
 
596
            || exit 1; \
 
597
          fi; \
 
598
        done
 
599
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
600
          if test "$$subdir" = .; then :; else \
 
601
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
602
            $(am__relativize); \
 
603
            new_distdir=$$reldir; \
 
604
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
605
            $(am__relativize); \
 
606
            new_top_distdir=$$reldir; \
 
607
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
608
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
609
            ($(am__cd) $$subdir && \
 
610
              $(MAKE) $(AM_MAKEFLAGS) \
 
611
                top_distdir="$$new_top_distdir" \
 
612
                distdir="$$new_distdir" \
 
613
                am__remove_distdir=: \
 
614
                am__skip_length_check=: \
 
615
                am__skip_mode_fix=: \
 
616
                distdir) \
 
617
              || exit 1; \
 
618
          fi; \
 
619
        done
532
620
        $(MAKE) $(AM_MAKEFLAGS) \
533
621
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
534
622
          dist-hook
648
736
               $(distcleancheck_listfiles) ; \
649
737
               exit 1; } >&2
650
738
check-am: all-am
651
 
check: check-am
652
 
all-am: Makefile $(PROGRAMS) $(DATA) config.h
653
 
installdirs:
654
 
        for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appmandir)"; do \
 
739
check: check-recursive
 
740
all-am: Makefile $(PROGRAMS) config.h
 
741
installdirs: installdirs-recursive
 
742
installdirs-am:
 
743
        for dir in "$(DESTDIR)$(bindir)"; do \
655
744
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
656
745
        done
657
 
install: install-am
658
 
install-exec: install-exec-am
659
 
install-data: install-data-am
660
 
uninstall: uninstall-am
 
746
install: install-recursive
 
747
install-exec: install-exec-recursive
 
748
install-data: install-data-recursive
 
749
uninstall: uninstall-recursive
661
750
 
662
751
install-am: all-am
663
752
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
664
753
 
665
 
installcheck: installcheck-am
 
754
installcheck: installcheck-recursive
666
755
install-strip:
667
756
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
668
757
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
671
760
mostlyclean-generic:
672
761
 
673
762
clean-generic:
674
 
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
675
763
 
676
764
distclean-generic:
677
765
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
681
769
        @echo "This command is intended for maintainers to use"
682
770
        @echo "it deletes files that may require special tools to rebuild."
683
771
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
684
 
clean: clean-am
 
772
clean: clean-recursive
685
773
 
686
774
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
687
775
 
688
 
distclean: distclean-am
 
776
distclean: distclean-recursive
689
777
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
690
778
        -rm -rf ./$(DEPDIR)
691
779
        -rm -f Makefile
692
780
distclean-am: clean-am distclean-compile distclean-generic \
693
781
        distclean-hdr distclean-tags
694
782
 
695
 
dvi: dvi-am
 
783
dvi: dvi-recursive
696
784
 
697
785
dvi-am:
698
786
 
699
 
html: html-am
 
787
html: html-recursive
700
788
 
701
789
html-am:
702
790
 
703
 
info: info-am
 
791
info: info-recursive
704
792
 
705
793
info-am:
706
794
 
707
 
install-data-am: install-appmanDATA
 
795
install-data-am:
708
796
 
709
 
install-dvi: install-dvi-am
 
797
install-dvi: install-dvi-recursive
710
798
 
711
799
install-dvi-am:
712
800
 
713
801
install-exec-am: install-binPROGRAMS
714
802
 
715
 
install-html: install-html-am
 
803
install-html: install-html-recursive
716
804
 
717
805
install-html-am:
718
806
 
719
 
install-info: install-info-am
 
807
install-info: install-info-recursive
720
808
 
721
809
install-info-am:
722
810
 
723
811
install-man:
724
812
 
725
 
install-pdf: install-pdf-am
 
813
install-pdf: install-pdf-recursive
726
814
 
727
815
install-pdf-am:
728
816
 
729
 
install-ps: install-ps-am
 
817
install-ps: install-ps-recursive
730
818
 
731
819
install-ps-am:
732
820
 
733
821
installcheck-am:
734
822
 
735
 
maintainer-clean: maintainer-clean-am
 
823
maintainer-clean: maintainer-clean-recursive
736
824
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
737
825
        -rm -rf $(top_srcdir)/autom4te.cache
738
826
        -rm -rf ./$(DEPDIR)
739
827
        -rm -f Makefile
740
828
maintainer-clean-am: distclean-am maintainer-clean-generic
741
829
 
742
 
mostlyclean: mostlyclean-am
 
830
mostlyclean: mostlyclean-recursive
743
831
 
744
832
mostlyclean-am: mostlyclean-compile mostlyclean-generic
745
833
 
746
 
pdf: pdf-am
 
834
pdf: pdf-recursive
747
835
 
748
836
pdf-am:
749
837
 
750
 
ps: ps-am
 
838
ps: ps-recursive
751
839
 
752
840
ps-am:
753
841
 
754
 
uninstall-am: uninstall-appmanDATA uninstall-binPROGRAMS
755
 
 
756
 
.MAKE: all install-am install-strip
757
 
 
758
 
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
759
 
        clean-binPROGRAMS clean-generic ctags dist dist-all dist-bzip2 \
 
842
uninstall-am: uninstall-binPROGRAMS
 
843
 
 
844
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
 
845
        ctags-recursive install-am install-strip tags-recursive
 
846
 
 
847
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
 
848
        all all-am am--refresh check check-am clean clean-binPROGRAMS \
 
849
        clean-generic ctags ctags-recursive dist dist-all dist-bzip2 \
760
850
        dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
761
851
        dist-zip distcheck distclean distclean-compile \
762
852
        distclean-generic distclean-hdr distclean-tags distcleancheck \
763
853
        distdir distuninstallcheck dvi dvi-am html html-am info \
764
 
        info-am install install-am install-appmanDATA \
765
 
        install-binPROGRAMS install-data install-data-am install-dvi \
766
 
        install-dvi-am install-exec install-exec-am install-html \
767
 
        install-html-am install-info install-info-am install-man \
768
 
        install-pdf install-pdf-am install-ps install-ps-am \
769
 
        install-strip installcheck installcheck-am installdirs \
770
 
        maintainer-clean maintainer-clean-generic mostlyclean \
771
 
        mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
772
 
        tags uninstall uninstall-am uninstall-appmanDATA \
773
 
        uninstall-binPROGRAMS
 
854
        info-am install install-am install-binPROGRAMS install-data \
 
855
        install-data-am install-dvi install-dvi-am install-exec \
 
856
        install-exec-am install-html install-html-am install-info \
 
857
        install-info-am install-man install-pdf install-pdf-am \
 
858
        install-ps install-ps-am install-strip installcheck \
 
859
        installcheck-am installdirs installdirs-am maintainer-clean \
 
860
        maintainer-clean-generic mostlyclean mostlyclean-compile \
 
861
        mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \
 
862
        uninstall uninstall-am uninstall-binPROGRAMS
774
863
 
775
864
 
776
865
.PHONY: ChangeLog INSTALL
783
872
 
784
873
dist-hook: ChangeLog INSTALL
785
874
 
786
 
.man.$(APP_MAN_SUFFIX):
787
 
        $(AM_V_GEN)sed $(MAN_SUBSTS) < $< > $@
788
 
 
789
875
# Tell versions [3.59,3.63) of GNU make to not export all variables.
790
876
# Otherwise a system limit (for SysV at least) may be exceeded.
791
877
.NOEXPORT: