5750808 [rkeene@sledge /home/rkeene/devel/old/bc-dos]$ cat -n Makefile.in
   1: # Makefile.in generated automatically by automake 1.3 from Makefile.am
   2: 
   3: # Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
   4: # This Makefile.in is free software; the Free Software Foundation
   5: # gives unlimited permission to copy and/or distribute it,
   6: # with or without modifications, as long as this notice is preserved.
   7: 
   8: # This program is distributed in the hope that it will be useful,
   9: # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  10: # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  11: # PARTICULAR PURPOSE.
  12: 
  13: 
  14: SHELL = /bin/sh
  15: 
  16: srcdir = @srcdir@
  17: top_srcdir = @top_srcdir@
  18: VPATH = @srcdir@
  19: prefix = @prefix@
  20: exec_prefix = @exec_prefix@
  21: 
  22: bindir = @bindir@
  23: sbindir = @sbindir@
  24: libexecdir = @libexecdir@
  25: datadir = @datadir@
  26: sysconfdir = @sysconfdir@
  27: sharedstatedir = @sharedstatedir@
  28: localstatedir = @localstatedir@
  29: libdir = @libdir@
  30: infodir = @infodir@
  31: mandir = @mandir@
  32: includedir = @includedir@
  33: oldincludedir = /usr/include
  34: 
  35: DISTDIR =
  36: 
  37: pkgdatadir = $(datadir)/@PACKAGE@
  38: pkglibdir = $(libdir)/@PACKAGE@
  39: pkgincludedir = $(includedir)/@PACKAGE@
  40: 
  41: top_builddir = .
  42: 
  43: ACLOCAL = @ACLOCAL@
  44: AUTOCONF = @AUTOCONF@
  45: AUTOMAKE = @AUTOMAKE@
  46: AUTOHEADER = @AUTOHEADER@
  47: 
  48: INSTALL = @INSTALL@
  49: INSTALL_PROGRAM = @INSTALL_PROGRAM@
  50: INSTALL_DATA = @INSTALL_DATA@
  51: INSTALL_SCRIPT = @INSTALL_SCRIPT@
  52: transform = @program_transform_name@
  53: 
  54: NORMAL_INSTALL = :
  55: PRE_INSTALL = :
  56: POST_INSTALL = :
  57: NORMAL_UNINSTALL = :
  58: PRE_UNINSTALL = :
  59: POST_UNINSTALL = :
  60: CC = @CC@
  61: LEX = @LEX@
  62: MAKEINFO = @MAKEINFO@
  63: PACKAGE = @PACKAGE@
  64: RANLIB = @RANLIB@
  65: VERSION = @VERSION@
  66: YACC = @YACC@
  67: 
  68: SUBDIRS = lib bc dc doc
  69: ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  70: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  71: CONFIG_HEADER = config.h
  72: CONFIG_CLEAN_FILES = 
  73: DIST_COMMON =  README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
  74: Makefile.in NEWS acconfig.h aclocal.m4 config.h.in configure \
  75: configure.in install-sh missing mkinstalldirs stamp-h.in
  76: 
  77: 
  78: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
  79: 
  80: TAR = tar
  81: GZIP = --best
  82: all: all-recursive-am all-am
  83: 
  84: .SUFFIXES:
  85: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
  86: 	cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
  87: 
  88: Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  89: 	cd $(top_builddir) \
  90: 	  && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
  91: 
  92: $(ACLOCAL_M4):  configure.in 
  93: 	cd $(srcdir) && $(ACLOCAL)
  94: 
  95: config.status: $(srcdir)/configure
  96: 	$(SHELL) ./config.status --recheck
  97: $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
  98: 	cd $(srcdir) && $(AUTOCONF)
  99: 
 100: config.h: stamp-h
 101: 	@:
 102: stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
 103: 	cd $(top_builddir) \
 104: 	  && CONFIG_FILES= CONFIG_HEADERS=config.h \
 105: 	     $(SHELL) ./config.status
 106: 	@echo timestamp > stamp-h
 107: $(srcdir)/config.h.in: $(srcdir)/stamp-h.in
 108: $(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
 109: 	cd $(top_srcdir) && $(AUTOHEADER)
 110: 	@echo timestamp > $(srcdir)/stamp-h.in
 111: 
 112: mostlyclean-hdr:
 113: 
 114: clean-hdr:
 115: 
 116: distclean-hdr:
 117: 	-rm -f config.h
 118: 
 119: maintainer-clean-hdr:
 120: 
 121: # This directory's subdirectories are mostly independent; you can cd
 122: # into them and run `make' without going through this Makefile.
 123: # To change the values of `make' variables: instead of editing Makefiles,
 124: # (1) if the variable is set in `config.status', edit `config.status'
 125: #     (which will cause the Makefiles to be regenerated when you run `make');
 126: # (2) otherwise, pass the desired values on the `make' command line.
 127: 
 128: @SET_MAKE@
 129: 
 130: all-recursive install-data-recursive install-exec-recursive \
 131: installdirs-recursive install-recursive uninstall-recursive  \
 132: check-recursive installcheck-recursive info-recursive dvi-recursive:
 133: 	@set fnord $(MAKEFLAGS); amf=$$2; \
 134: 	list='$(SUBDIRS)'; for subdir in $$list; do \
 135: 	  target=`echo $@ | sed s/-recursive//`; \
 136: 	  echo "Making $$target in $$subdir"; \
 137: 	  (cd $$subdir && $(MAKE) $$target) \
 138: 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
 139: 	done && test -z "$$fail"
 140: 
 141: mostlyclean-recursive clean-recursive distclean-recursive \
 142: maintainer-clean-recursive:
 143: 	@set fnord $(MAKEFLAGS); amf=$$2; \
 144: 	rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
 145: 	  rev="$$subdir $$rev"; \
 146: 	done; \
 147: 	for subdir in $$rev; do \
 148: 	  target=`echo $@ | sed s/-recursive//`; \
 149: 	  echo "Making $$target in $$subdir"; \
 150: 	  (cd $$subdir && $(MAKE) $$target) \
 151: 	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
 152: 	done && test -z "$$fail"
 153: tags-recursive:
 154: 	list='$(SUBDIRS)'; for subdir in $$list; do \
 155: 	  (cd $$subdir && $(MAKE) tags); \
 156: 	done
 157: 
 158: tags: TAGS
 159: 
 160: ID: $(HEADERS) $(SOURCES) $(LISP)
 161: 	here=`pwd` && cd $(srcdir) \
 162: 	  && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
 163: 
 164: TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
 165: 	tags=; \
 166: 	here=`pwd`; \
 167: 	list='$(SUBDIRS)'; for subdir in $$list; do \
 168: 	  test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
 169: 	done; \
 170: 	list='$(SOURCES) $(HEADERS)'; \
 171: 	unique=`for i in $$list; do echo $$i; done | \
 172: 	  awk '    { files[$$0] = 1; } \
 173: 	       END { for (i in files) print i; }'`; \
 174: 	test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
 175: 	  || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
 176: 
 177: mostlyclean-tags:
 178: 
 179: clean-tags:
 180: 
 181: distclean-tags:
 182: 	-rm -f TAGS ID
 183: 
 184: maintainer-clean-tags:
 185: 
 186: distdir = $(PACKAGE)-$(VERSION)
 187: top_distdir = $(distdir)
 188: 
 189: # This target untars the dist file and tries a VPATH configuration.  Then
 190: # it guarantees that the distribution is self-contained by making another
 191: # tarfile.
 192: distcheck: dist
 193: 	-rm -rf $(distdir)
 194: 	GZIP=$(GZIP) $(TAR) zxf $(distdir).tar.gz
 195: 	mkdir $(distdir)/=build
 196: 	mkdir $(distdir)/=inst
 197: 	dc_install_base=`cd $(distdir)/=inst && pwd`; \
 198: 	cd $(distdir)/=build \
 199: 	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
 200: 	  && $(MAKE) \
 201: 	  && $(MAKE) dvi \
 202: 	  && $(MAKE) check \
 203: 	  && $(MAKE) install \
 204: 	  && $(MAKE) installcheck \
 205: 	  && $(MAKE) dist
 206: 	-rm -rf $(distdir)
 207: 	@echo "========================"; \
 208: 	echo "$(distdir).tar.gz is ready for distribution"; \
 209: 	echo "========================"
 210: dist: distdir
 211: 	-chmod -R a+r $(distdir)
 212: 	GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
 213: 	-rm -rf $(distdir)
 214: dist-all: distdir
 215: 	-chmod -R a+r $(distdir)
 216: 	GZIP=$(GZIP) $(TAR) chozf $(distdir).tar.gz $(distdir)
 217: 	-rm -rf $(distdir)
 218: distdir: $(DISTFILES)
 219: 	-rm -rf $(distdir)
 220: 	mkdir $(distdir)
 221: 	-chmod 777 $(distdir)
 222: 	@for file in $(DISTFILES); do \
 223: 	  d=$(srcdir); \
 224: 	  test -f $(distdir)/$$file \
 225: 	  || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
 226: 	  || cp -p $$d/$$file $(distdir)/$$file; \
 227: 	done
 228: 	for subdir in $(SUBDIRS); do \
 229: 	  test -d $(distdir)/$$subdir \
 230: 	  || mkdir $(distdir)/$$subdir \
 231: 	  || exit 1; \
 232: 	  chmod 777 $(distdir)/$$subdir; \
 233: 	  (cd $$subdir && $(MAKE) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
 234: 	    || exit 1; \
 235: 	done
 236: 	$(MAKE) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-hook
 237: info: info-recursive
 238: dvi: dvi-recursive
 239: check: all-am
 240: 	$(MAKE) check-recursive
 241: installcheck: installcheck-recursive
 242: all-recursive-am: config.h
 243: 	$(MAKE) all-recursive
 244: 
 245: all-am: Makefile config.h
 246: 
 247: install-exec: install-exec-recursive
 248: 	@$(NORMAL_INSTALL)
 249: 
 250: install-data: install-data-recursive
 251: 	@$(NORMAL_INSTALL)
 252: 
 253: install: install-recursive
 254: 	@:
 255: 
 256: uninstall: uninstall-recursive
 257: 
 258: install-strip:
 259: 	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
 260: installdirs: installdirs-recursive
 261: 
 262: 
 263: mostlyclean-generic:
 264: 	-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
 265: 
 266: clean-generic:
 267: 	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 268: 
 269: distclean-generic:
 270: 	-rm -f Makefile $(DISTCLEANFILES)
 271: 	-rm -f config.cache config.log stamp-h stamp-h[0-9]*
 272: 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 273: 
 274: maintainer-clean-generic:
 275: 	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
 276: 	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
 277: mostlyclean-am:  mostlyclean-hdr mostlyclean-tags mostlyclean-generic
 278: 
 279: clean-am:  clean-hdr clean-tags clean-generic mostlyclean-am
 280: 
 281: distclean-am:  distclean-hdr distclean-tags distclean-generic clean-am
 282: 
 283: maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-tags \
 284: 		maintainer-clean-generic distclean-am
 285: 
 286: mostlyclean:  mostlyclean-recursive mostlyclean-am
 287: 
 288: clean:  clean-recursive clean-am
 289: 
 290: distclean:  distclean-recursive distclean-am
 291: 	-rm -f config.status
 292: 
 293: maintainer-clean:  maintainer-clean-recursive maintainer-clean-am
 294: 	@echo "This command is intended for maintainers to use;"
 295: 	@echo "it deletes files that may require special tools to rebuild."
 296: 	-rm -f config.status
 297: 
 298: .PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
 299: install-data-recursive uninstall-data-recursive install-exec-recursive \
 300: uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
 301: all-recursive check-recursive installcheck-recursive info-recursive \
 302: dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
 303: maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
 304: distclean-tags clean-tags maintainer-clean-tags distdir info dvi \
 305: installcheck all-recursive-am all-am install-exec install-data install \
 306: uninstall all installdirs mostlyclean-generic distclean-generic \
 307: clean-generic maintainer-clean-generic clean mostlyclean distclean \
 308: maintainer-clean
 309: 
 310: 
 311: dist-hook:
 312: 	mkdir $(distdir)/h $(distdir)/Examples $(distdir)/Test
 313: 	cp -p $(srcdir)/h/*.h $(distdir)/h
 314: 	cp -p $(srcdir)/Examples/*.b $(distdir)/Examples
 315: 	cp -p $(srcdir)/Test/*.b $(srcdir)/Test/*.bc $(distdir)/Test
 316: 	cp -p $(srcdir)/Test/signum $(srcdir)/Test/timetest $(distdir)/Test
 317: 
 318: # Tell versions [3.59,3.63) of GNU make to not export all variables.
 319: # Otherwise a system limit (for SysV at least) may be exceeded.
 320: .NOEXPORT:
5750809 [rkeene@sledge /home/rkeene/devel/old/bc-dos]$

Click here to go back to the directory listing.
Click here to download this file.
last modified: 1998-04-17 16:11:12