ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/branches/1.0.x/src/libopm/Makefile.in
(Generate patch)

Comparing hopm/branches/1.0.x/src/libopm/Makefile.in (file contents):
Revision 5260 by michael, Thu Dec 25 19:44:15 2014 UTC vs.
Revision 5261 by michael, Thu Jan 1 17:58:48 2015 UTC

# Line 77 | Line 77 | PRE_UNINSTALL = :
77   POST_UNINSTALL = :
78   build_triplet = @build@
79   host_triplet = @host@
80 < subdir = .
80 > subdir = src/libopm
81   DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
82 <        $(top_srcdir)/configure $(am__configure_deps) mkinstalldirs \
83 <        COPYING compile config.guess config.sub install-sh missing \
84 <        ltmain.sh
82 >        $(top_srcdir)/mkinstalldirs COPYING
83   ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
84   am__aclocal_m4_deps = $(top_srcdir)/configure.ac
85   am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
86          $(ACLOCAL_M4)
89 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
90 configure.lineno config.status.lineno
87   mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
88   CONFIG_HEADER = $(top_builddir)/src/setup.h
89   CONFIG_CLEAN_FILES =
# Line 126 | Line 122 | am__recursive_targets = \
122    $(RECURSIVE_CLEAN_TARGETS) \
123    $(am__extra_recursive_targets)
124   AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
125 <        cscope distdir dist dist-all distcheck
125 >        distdir
126   am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
127   # Read a list of newline-separated strings from the standard input,
128   # and print each of them once, without duplicates.  Input order is
# Line 146 | Line 142 | am__define_uniq_tagged_files = \
142    done | $(am__uniquify_input)`
143   ETAGS = etags
144   CTAGS = ctags
149 CSCOPE = cscope
145   DIST_SUBDIRS = $(SUBDIRS)
146   DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
152 distdir = $(PACKAGE)-$(VERSION)
153 top_distdir = $(distdir)
154 am__remove_distdir = \
155  if test -d "$(distdir)"; then \
156    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
157      && rm -rf "$(distdir)" \
158      || { sleep 5 && rm -rf "$(distdir)"; }; \
159  else :; fi
160 am__post_remove_distdir = $(am__remove_distdir)
147   am__relativize = \
148    dir0=`pwd`; \
149    sed_first='s,^\([^/]*\)/.*$$,\1,'; \
# Line 183 | Line 169 | am__relativize = \
169      dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
170    done; \
171    reldir="$$dir2"
186 DIST_ARCHIVES = $(distdir).tar.gz
187 GZIP_ENV = --best
188 DIST_TARGETS = dist-gzip
189 distuninstallcheck_listfiles = find . -type f -print
190 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
191  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
192 distcleancheck_listfiles = find . -type f -print
172   ACLOCAL = @ACLOCAL@
173   AMTAR = @AMTAR@
174   AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
# Line 223 | Line 202 | INSTALL_SCRIPT = @INSTALL_SCRIPT@
202   INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
203   LD = @LD@
204   LDFLAGS = @LDFLAGS@
205 + LEX = @LEX@
206 + LEXLIB = @LEXLIB@
207 + LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
208   LIBOBJS = @LIBOBJS@
209   LIBS = @LIBS@
210   LIBTOOL = @LIBTOOL@
229 LIBTOOL_DEPS = @LIBTOOL_DEPS@
211   LIPO = @LIPO@
212   LN_S = @LN_S@
213   LTLIBOBJS = @LTLIBOBJS@
# Line 254 | Line 235 | SET_MAKE = @SET_MAKE@
235   SHELL = @SHELL@
236   STRIP = @STRIP@
237   VERSION = @VERSION@
238 + YACC = @YACC@
239 + YFLAGS = @YFLAGS@
240   abs_builddir = @abs_builddir@
241   abs_srcdir = @abs_srcdir@
242   abs_top_builddir = @abs_top_builddir@
# Line 311 | Line 294 | SUBDIRS = src
294   all: all-recursive
295  
296   .SUFFIXES:
314 am--refresh: Makefile
315        @:
297   $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
298          @for dep in $?; do \
299            case '$(am__configure_deps)' in \
300              *$$dep*) \
301 <              echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
302 <              $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
322 <                && exit 0; \
301 >              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
302 >                && { if test -f $@; then exit 0; else break; fi; }; \
303                exit 1;; \
304            esac; \
305          done; \
306 <        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
306 >        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/libopm/Makefile'; \
307          $(am__cd) $(top_srcdir) && \
308 <          $(AUTOMAKE) --foreign Makefile
308 >          $(AUTOMAKE) --foreign src/libopm/Makefile
309   .PRECIOUS: Makefile
310   Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
311          @case '$?' in \
312            *config.status*) \
313 <            echo ' $(SHELL) ./config.status'; \
334 <            $(SHELL) ./config.status;; \
313 >            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
314            *) \
315 <            echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
316 <            cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
315 >            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
316 >            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
317          esac;
318  
319   $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
320 <        $(SHELL) ./config.status --recheck
320 >        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
321  
322   $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
323 <        $(am__cd) $(srcdir) && $(AUTOCONF)
323 >        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
324   $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
325 <        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
325 >        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
326   $(am__aclocal_m4_deps):
327  
328   mostlyclean-libtool:
# Line 352 | Line 331 | mostlyclean-libtool:
331   clean-libtool:
332          -rm -rf .libs _libs
333  
355 distclean-libtool:
356        -rm -f libtool config.lt
357
334   # This directory's subdirectories are mostly independent; you can cd
335   # into them and run 'make' without going through this Makefile.
336   # To change the values of 'make' variables: instead of editing Makefiles,
# Line 435 | Line 411 | GTAGS:
411          here=`$(am__cd) $(top_builddir) && pwd` \
412            && $(am__cd) $(top_srcdir) \
413            && gtags -i $(GTAGS_ARGS) "$$here"
438 cscope: cscope.files
439        test ! -s cscope.files \
440          || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
441 clean-cscope:
442        -rm -f cscope.files
443 cscope.files: clean-cscope cscopelist
414   cscopelist: cscopelist-recursive
415  
416   cscopelist-am: $(am__tagged_files)
# Line 459 | Line 429 | cscopelist-am: $(am__tagged_files)
429  
430   distclean-tags:
431          -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
462        -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
432  
433   distdir: $(DISTFILES)
465        $(am__remove_distdir)
466        test -d "$(distdir)" || mkdir "$(distdir)"
434          @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
435          topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
436          list='$(DISTFILES)'; \
# Line 518 | Line 485 | distdir: $(DISTFILES)
485                || exit 1; \
486            fi; \
487          done
521        -test -n "$(am__skip_mode_fix)" \
522        || find "$(distdir)" -type d ! -perm -755 \
523                -exec chmod u+rwx,go+rx {} \; -o \
524          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
525          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
526          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
527        || chmod -R a+r "$(distdir)"
528 dist-gzip: distdir
529        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
530        $(am__post_remove_distdir)
531
532 dist-bzip2: distdir
533        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
534        $(am__post_remove_distdir)
535
536 dist-lzip: distdir
537        tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
538        $(am__post_remove_distdir)
539
540 dist-xz: distdir
541        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
542        $(am__post_remove_distdir)
543
544 dist-tarZ: distdir
545        @echo WARNING: "Support for shar distribution archives is" \
546                       "deprecated." >&2
547        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
548        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
549        $(am__post_remove_distdir)
550
551 dist-shar: distdir
552        @echo WARNING: "Support for distribution archives compressed with" \
553                       "legacy program 'compress' is deprecated." >&2
554        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
555        shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
556        $(am__post_remove_distdir)
557
558 dist-zip: distdir
559        -rm -f $(distdir).zip
560        zip -rq $(distdir).zip $(distdir)
561        $(am__post_remove_distdir)
562
563 dist dist-all:
564        $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
565        $(am__post_remove_distdir)
566
567 # This target untars the dist file and tries a VPATH configuration.  Then
568 # it guarantees that the distribution is self-contained by making another
569 # tarfile.
570 distcheck: dist
571        case '$(DIST_ARCHIVES)' in \
572        *.tar.gz*) \
573          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
574        *.tar.bz2*) \
575          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
576        *.tar.lz*) \
577          lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
578        *.tar.xz*) \
579          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
580        *.tar.Z*) \
581          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
582        *.shar.gz*) \
583          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
584        *.zip*) \
585          unzip $(distdir).zip ;;\
586        esac
587        chmod -R a-w $(distdir)
588        chmod u+w $(distdir)
589        mkdir $(distdir)/_build $(distdir)/_inst
590        chmod a-w $(distdir)
591        test -d $(distdir)/_build || exit 0; \
592        dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
593          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
594          && am__cwd=`pwd` \
595          && $(am__cd) $(distdir)/_build \
596          && ../configure \
597            $(AM_DISTCHECK_CONFIGURE_FLAGS) \
598            $(DISTCHECK_CONFIGURE_FLAGS) \
599            --srcdir=.. --prefix="$$dc_install_base" \
600          && $(MAKE) $(AM_MAKEFLAGS) \
601          && $(MAKE) $(AM_MAKEFLAGS) dvi \
602          && $(MAKE) $(AM_MAKEFLAGS) check \
603          && $(MAKE) $(AM_MAKEFLAGS) install \
604          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
605          && $(MAKE) $(AM_MAKEFLAGS) uninstall \
606          && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
607                distuninstallcheck \
608          && chmod -R a-w "$$dc_install_base" \
609          && ({ \
610               (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
611               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
612               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
613               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
614                    distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
615              } || { rm -rf "$$dc_destdir"; exit 1; }) \
616          && rm -rf "$$dc_destdir" \
617          && $(MAKE) $(AM_MAKEFLAGS) dist \
618          && rm -rf $(DIST_ARCHIVES) \
619          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
620          && cd "$$am__cwd" \
621          || exit 1
622        $(am__post_remove_distdir)
623        @(echo "$(distdir) archives ready for distribution: "; \
624          list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
625          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
626 distuninstallcheck:
627        @test -n '$(distuninstallcheck_dir)' || { \
628          echo 'ERROR: trying to run $@ with an empty' \
629               '$$(distuninstallcheck_dir)' >&2; \
630          exit 1; \
631        }; \
632        $(am__cd) '$(distuninstallcheck_dir)' || { \
633          echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
634          exit 1; \
635        }; \
636        test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
637           || { echo "ERROR: files left after uninstall:" ; \
638                if test -n "$(DESTDIR)"; then \
639                  echo "  (check DESTDIR support)"; \
640                fi ; \
641                $(distuninstallcheck_listfiles) ; \
642                exit 1; } >&2
643 distcleancheck: distclean
644        @if test '$(srcdir)' = . ; then \
645          echo "ERROR: distcleancheck can only run from a VPATH build" ; \
646          exit 1 ; \
647        fi
648        @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
649          || { echo "ERROR: files left in build directory after distclean:" ; \
650               $(distcleancheck_listfiles) ; \
651               exit 1; } >&2
488   check-am: all-am
489   check: check-recursive
490   all-am: Makefile
# Line 689 | Line 525 | clean: clean-recursive
525   clean-am: clean-generic clean-libtool mostlyclean-am
526  
527   distclean: distclean-recursive
692        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
528          -rm -f Makefile
529 < distclean-am: clean-am distclean-generic distclean-libtool \
695 <        distclean-tags
529 > distclean-am: clean-am distclean-generic distclean-tags
530  
531   dvi: dvi-recursive
532  
# Line 735 | Line 569 | install-ps-am:
569   installcheck-am:
570  
571   maintainer-clean: maintainer-clean-recursive
738        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
739        -rm -rf $(top_srcdir)/autom4te.cache
572          -rm -f Makefile
573   maintainer-clean-am: distclean-am maintainer-clean-generic
574  
# Line 756 | Line 588 | uninstall-am:
588  
589   .MAKE: $(am__recursive_targets) install-am install-strip
590  
591 < .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
592 <        am--refresh check check-am clean clean-cscope clean-generic \
593 <        clean-libtool cscope cscopelist-am ctags ctags-am dist \
594 <        dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
763 <        dist-xz dist-zip distcheck distclean distclean-generic \
764 <        distclean-libtool distclean-tags distcleancheck distdir \
765 <        distuninstallcheck dvi dvi-am html html-am info info-am \
591 > .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
592 >        check-am clean clean-generic clean-libtool cscopelist-am ctags \
593 >        ctags-am distclean distclean-generic distclean-libtool \
594 >        distclean-tags distdir dvi dvi-am html html-am info info-am \
595          install install-am install-data install-data-am install-dvi \
596          install-dvi-am install-exec install-exec-am install-html \
597          install-html-am install-info install-info-am install-man \
# Line 772 | Line 601 | uninstall-am:
601          mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
602          ps ps-am tags tags-am uninstall uninstall-am
603  
775 libtool: $(LIBTOOL_DEPS)
776        $(SHELL) ./config.status --recheck
604  
605   # Tell versions [3.59,3.63) of GNU make to not export all variables.
606   # Otherwise a system limit (for SysV at least) may be exceeded.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines