5761288 [rkeene@sledge /home/rkeene/devel/old/bc-dos/dc]$ 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: bin_PROGRAMS = dc
  69: 
  70: dc_SOURCES = dc.c misc.c eval.c stack.c array.c numeric.c string.c
  71: noinst_HEADERS = dc.h dc-proto.h dc-regdef.h
  72: 
  73: INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../h
  74: LDADD = ../lib/libbc.a
  75: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  76: CONFIG_HEADER = ../config.h
  77: CONFIG_CLEAN_FILES = 
  78: PROGRAMS =  $(bin_PROGRAMS)
  79: 
  80: 
  81: DEFS = @DEFS@ -I. -I$(srcdir) -I..
  82: CPPFLAGS = @CPPFLAGS@
  83: LDFLAGS = @LDFLAGS@
  84: LIBS = @LIBS@
  85: dc_OBJECTS =  dc.o misc.o eval.o stack.o array.o numeric.o string.o
  86: dc_LDADD = $(LDADD)
  87: dc_DEPENDENCIES =  ../lib/libbc.a
  88: dc_LDFLAGS = 
  89: CFLAGS = @CFLAGS@
  90: COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
  91: LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
  92: HEADERS =  $(noinst_HEADERS)
  93: 
  94: DIST_COMMON =  Makefile.am Makefile.in
  95: 
  96: 
  97: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
  98: 
  99: TAR = tar
 100: GZIP = --best
 101: SOURCES = $(dc_SOURCES)
 102: OBJECTS = $(dc_OBJECTS)
 103: 
 104: all: Makefile $(PROGRAMS) $(HEADERS)
 105: 
 106: .SUFFIXES:
 107: .SUFFIXES: .S .c .o .s
 108: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
 109: 	cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps dc/Makefile
 110: 
 111: Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
 112: 	cd $(top_builddir) \
 113: 	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 114: 
 115: 
 116: mostlyclean-binPROGRAMS:
 117: 
 118: clean-binPROGRAMS:
 119: 	-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
 120: 
 121: distclean-binPROGRAMS:
 122: 
 123: maintainer-clean-binPROGRAMS:
 124: 
 125: install-binPROGRAMS: $(bin_PROGRAMS)
 126: 	@$(NORMAL_INSTALL)
 127: 	$(mkinstalldirs) $(DESTDIR)$(bindir)
 128: 	@list='$(bin_PROGRAMS)'; for p in $$list; do \
 129: 	  if test -f $$p; then \
 130: 	    echo "  $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
 131: 	     $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
 132: 	  else :; fi; \
 133: 	done
 134: 
 135: uninstall-binPROGRAMS:
 136: 	@$(NORMAL_UNINSTALL)
 137: 	list='$(bin_PROGRAMS)'; for p in $$list; do \
 138: 	  rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
 139: 	done
 140: 
 141: .c.o:
 142: 	$(COMPILE) -c $<
 143: 
 144: .s.o:
 145: 	$(COMPILE) -c $<
 146: 
 147: .S.o:
 148: 	$(COMPILE) -c $<
 149: 
 150: mostlyclean-compile:
 151: 	-rm -f *.o core *.core
 152: 
 153: clean-compile:
 154: 
 155: distclean-compile:
 156: 	-rm -f *.tab.c
 157: 
 158: maintainer-clean-compile:
 159: 
 160: dc: $(dc_OBJECTS) $(dc_DEPENDENCIES)
 161: 	@rm -f dc
 162: 	$(LINK) $(dc_LDFLAGS) $(dc_OBJECTS) $(dc_LDADD) $(LIBS)
 163: 
 164: tags: TAGS
 165: 
 166: ID: $(HEADERS) $(SOURCES) $(LISP)
 167: 	here=`pwd` && cd $(srcdir) \
 168: 	  && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
 169: 
 170: TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
 171: 	tags=; \
 172: 	here=`pwd`; \
 173: 	list='$(SOURCES) $(HEADERS)'; \
 174: 	unique=`for i in $$list; do echo $$i; done | \
 175: 	  awk '    { files[$$0] = 1; } \
 176: 	       END { for (i in files) print i; }'`; \
 177: 	test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
 178: 	  || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
 179: 
 180: mostlyclean-tags:
 181: 
 182: clean-tags:
 183: 
 184: distclean-tags:
 185: 	-rm -f TAGS ID
 186: 
 187: maintainer-clean-tags:
 188: 
 189: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
 190: 
 191: subdir = dc
 192: 
 193: distdir: $(DISTFILES)
 194: 	@for file in $(DISTFILES); do \
 195: 	  d=$(srcdir); \
 196: 	  test -f $(distdir)/$$file \
 197: 	  || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
 198: 	  || cp -p $$d/$$file $(distdir)/$$file; \
 199: 	done
 200: info:
 201: dvi:
 202: check: all
 203: 	$(MAKE)
 204: installcheck:
 205: install-exec: install-binPROGRAMS
 206: 	@$(NORMAL_INSTALL)
 207: 
 208: install-data: 
 209: 	@$(NORMAL_INSTALL)
 210: 
 211: install: install-exec install-data all
 212: 	@:
 213: 
 214: uninstall: uninstall-binPROGRAMS
 215: 
 216: install-strip:
 217: 	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
 218: installdirs:
 219: 	$(mkinstalldirs)  $(DATADIR)$(bindir)
 220: 
 221: 
 222: mostlyclean-generic:
 223: 	-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
 224: 
 225: clean-generic:
 226: 	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 227: 
 228: distclean-generic:
 229: 	-rm -f Makefile $(DISTCLEANFILES)
 230: 	-rm -f config.cache config.log stamp-h stamp-h[0-9]*
 231: 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 232: 
 233: maintainer-clean-generic:
 234: 	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
 235: 	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
 236: mostlyclean:  mostlyclean-binPROGRAMS mostlyclean-compile \
 237: 		mostlyclean-tags mostlyclean-generic
 238: 
 239: clean:  clean-binPROGRAMS clean-compile clean-tags clean-generic \
 240: 		mostlyclean
 241: 
 242: distclean:  distclean-binPROGRAMS distclean-compile distclean-tags \
 243: 		distclean-generic clean
 244: 	-rm -f config.status
 245: 
 246: maintainer-clean:  maintainer-clean-binPROGRAMS maintainer-clean-compile \
 247: 		maintainer-clean-tags maintainer-clean-generic \
 248: 		distclean
 249: 	@echo "This command is intended for maintainers to use;"
 250: 	@echo "it deletes files that may require special tools to rebuild."
 251: 
 252: .PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
 253: maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
 254: mostlyclean-compile distclean-compile clean-compile \
 255: maintainer-clean-compile tags mostlyclean-tags distclean-tags \
 256: clean-tags maintainer-clean-tags distdir info dvi installcheck \
 257: install-exec install-data install uninstall all installdirs \
 258: mostlyclean-generic distclean-generic clean-generic \
 259: maintainer-clean-generic clean mostlyclean distclean maintainer-clean
 260: 
 261: 
 262: $(PROGRAMS): $(LDADD)
 263: 
 264: # Tell versions [3.59,3.63) of GNU make to not export all variables.
 265: # Otherwise a system limit (for SysV at least) may be exceeded.
 266: .NOEXPORT:
5761289 [rkeene@sledge /home/rkeene/devel/old/bc-dos/dc]$

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