home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / guile-ii.src / guile-ii / guile-src / libguile / Makefile.in < prev    next >
Encoding:
Makefile  |  1995-08-16  |  23.7 KB  |  633 lines

  1. # @configure_input@
  2.  
  3. #    Copyright (C) 1995 Free Software Foundation, Inc.
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with this software; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  15. #
  16.  
  17.  
  18. #
  19. # Makefile for libguile
  20. #
  21.  
  22. VPATH = @srcdir@
  23. srcdir = @srcdir@
  24. SHELL = /bin/sh
  25.  
  26. # Common prefix for machine-independent installed files.
  27. prefix = @prefix@
  28.  
  29. # Common prefix for machine-dependent installed files.
  30. exec_prefix = @exec_prefix@
  31.  
  32. # Name under which to install Guile
  33. instname = guile
  34.  
  35. # Directory to install `guile' in.
  36. bindir = $(exec_prefix)/bin
  37.  
  38. # Directory in which to install init files &c
  39. libdir = $(exec_prefix)/lib
  40.  
  41. # Directory to search by default for included makefiles.
  42. includedir = $(prefix)/include
  43.  
  44. # Directory to install the Info files in.
  45. infodir = $(prefix)/info
  46.  
  47. # Directory to install the man page in.
  48. mandir = $(prefix)/man/man$(manext)
  49.  
  50. # Number to put on the man page filename.
  51. manext = 1
  52.  
  53. # Directory to perform pre-install tests in.
  54. testdir = $(srcdir)
  55.  
  56. # Program to install `scm'.
  57. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  58.  
  59. # Program to install the man page.
  60. INSTALL_DATA = @INSTALL_DATA@
  61.  
  62. # Generic install program.
  63. INSTALL = @INSTALL@
  64.  
  65. # Program to format Texinfo source into Info files.
  66. MAKEINFO = makeinfo
  67.  
  68. # Program to format Texinfo source into DVI files.
  69. TEXI2DVI = texi2dvi
  70.  
  71. # Programs to make tags files.
  72. ETAGS = etags
  73. CTAGS = ctags -tw
  74.  
  75. # where the init files are found
  76. IMPLPATH=$(libdir)
  77.  
  78. # CC
  79. XFLAGS = @X_CFLAGS@
  80. CFLAGS = @CFLAGS@ $(X_CFLAGS) -I. -I$(srcdir)/../rx -I$(srcdir)/../gtcl  -I$(srcdir)/../gtk -I$(srcdir) -DLIBRARY_PATH=\"$(libdir)/gls/\" -DIMPLINIT=\"$(libdir)/gls/Ginit.scm\" -DGUILE -DHAVE_CONFIG_H @DEFS@
  81. CC = @CC@ $(CFLAGS) -Wall
  82.  
  83. # CC used as a front end for ld
  84. LDFLAGS = @LDFLAGS@
  85. CCLD= $(CC) $(LDFLAGS)
  86.  
  87. # AR
  88. AR = ar
  89. AR_FLAGS = rc
  90. RANLIB = @RANLIB@
  91.  
  92. # parser tools
  93. BISON = @YACC@
  94. FLEX = @LEX@
  95.  
  96. # If your system needs extra libraries loaded in, define them here.
  97. #    -lcurses    For crs.c extensions.
  98. #    -lncurses    For curses on Linux (curses has bugs).
  99. #    -lterm{cap,lib}    May be required for curses support.
  100. #    -lregex        For POSIX regexp support (rgx.c).
  101. XLIBS = @X_LIBS@ @X_EXTRA_LIBS@
  102. LOADLIBES =   ../rx/librx.a  @LIBS@ $(XLIBS) @LEXLIB@ -lm
  103.  
  104. # Any extra object files your system needs.
  105. extras = @LIBOBJS@
  106.  
  107. # nunix = nonunix ... where are the non-unix sources
  108. nunix = $(srcdir)
  109.  
  110. # examples = examples ... where are the demo files
  111. examples = $(srcdir)
  112.  
  113. libobjs=    arbiters.o \
  114.         boolean.o \
  115.         chars.o \
  116.         continuations.o \
  117.         dynwind.o \
  118.         eq.o \
  119.         error.o \
  120.         eval.o \
  121.         feature.o \
  122.         fports.o \
  123.         files.o \
  124.         gc.o \
  125.         gscm.o \
  126.         gsubr.o \
  127.         hash.o \
  128.         kw.o \
  129.         lvectors.o \
  130.         marksweep.o \
  131.         numbers.o \
  132.         pairs.o \
  133.         ports.o \
  134.         procs.o \
  135.         ramap.o \
  136.         repl.o \
  137.         scmsigs.o \
  138.         simpos.o \
  139.         smob.o \
  140.         record.o \
  141.         stackchk.o \
  142.         strings.o \
  143.         strop.o \
  144.         strports.o \
  145.         struct.o \
  146.         symbols.o \
  147.         time.o \
  148.         throw.o \
  149.         unif.o \
  150.         variable.o \
  151.         vectors.o \
  152.         vports.o \
  153.         $(extras)
  154.  
  155.  
  156. uninstalled_h_files= _scm.h
  157.  
  158. installed_h_files= __scm.h \
  159.         arbiters.h \
  160.         boolean.h \
  161.         chars.h \
  162.         continuations.h \
  163.         dynwind.h \
  164.         eq.h \
  165.         error.h \
  166.         eval.h \
  167.         feature.h \
  168.         fports.h \
  169.         files.h \
  170.         gc.h \
  171.         gsubr.h \
  172.         gscm.h \
  173.         hash.h \
  174.         kw.h \
  175.         lvectors.h \
  176.         marksweep.h \
  177.         numbers.h \
  178.         pairs.h \
  179.         ports.h \
  180.         params.h \
  181.         procs.h \
  182.         ramap.h \
  183.         repl.h \
  184.         scmsigs.h \
  185.         simpos.h \
  186.         smob.h \
  187.         record.h \
  188.         stackchk.h \
  189.         strports.h \
  190.         struct.h \
  191.         symbols.h \
  192.         time.h \
  193.         variable.h \
  194.         vectors.h \
  195.         vports.h \
  196.         unif.h \
  197.         tags.h \
  198.         strings.h \
  199.         strop.h \
  200.         throw.h \
  201.         unif.h
  202.  
  203. h_files=$(uninstalled_h_files) $(installed_h_files)
  204.  
  205. c_normals=    arbiters.c \
  206.         boolean.c \
  207.         chars.c \
  208.         continuations.c \
  209.         dynwind.c \
  210.         eq.c \
  211.         error.c \
  212.         feature.c \
  213.         fports.c \
  214.         files.c \
  215.         gc.c \
  216.         gscm.c \
  217.         hash.c \
  218.         kw.c \
  219.         lvectors.c \
  220.         marksweep.c \
  221.         numbers.c \
  222.         pairs.c \
  223.         ports.c \
  224.         procs.c \
  225.         simpos.c \
  226.         smob.c \
  227.         record.c \
  228.         repl.c \
  229.         scmsigs.c \
  230.         stackchk.c \
  231.         strports.c \
  232.         struct.c \
  233.         symbols.c \
  234.         time.c \
  235.         strings.c \
  236.         strop.c \
  237.         throw.c \
  238.         variable.c \
  239.         vectors.c \
  240.         vports.c
  241.  
  242.  
  243. gen_c_files=    arbiters.x \
  244.         boolean.x \
  245.         chars.x \
  246.         continuations.x \
  247.         dynwind.x \
  248.         eq.x \
  249.         error.x \
  250.         eval.x \
  251.         fports.x \
  252.         files.x \
  253.         gc.x \
  254.         gscm.x \
  255.         hash.x \
  256.         kw.x \
  257.         lvectors.x \
  258.         numbers.x \
  259.         pairs.x \
  260.         ports.x \
  261.         procs.x \
  262.         simpos.x \
  263.         smob.x \
  264.         record.x \
  265.         repl.x \
  266.         scmsigs.x \
  267.         stackchk.x \
  268.         strports.x \
  269.         struct.x \
  270.         symbols.x \
  271.         time.x \
  272.         strings.x \
  273.         strop.x \
  274.         throw.x \
  275.         variable.x \
  276.         vectors.x \
  277.         vports.x
  278.  
  279.  
  280. c_exceptions=    eval.c \
  281.         gsubr.c \
  282.         ramap.c \
  283.         unif.c
  284.  
  285. c_files= $(c_normals) $(c_exceptions)
  286.  
  287. c_sources=    $(c_files) $(h_files)
  288.  
  289. ancillery =    COPYING \
  290.         ChangeLog \
  291.         ChangeLog.scm \
  292.         HISTORY \
  293.         PLUGIN \
  294.         Makefile.in \
  295.         RENAME.SED \
  296.         acconfig-1.5.h \
  297.         configure \
  298.         configure.in \
  299.         install-sh \
  300.         scmconfig.h.in
  301.  
  302. manifest = $(ancillery) $(c_sources)
  303.  
  304.  
  305. .SUFFIXES:
  306. .SUFFIXES: .o .c .h .ps .dvi .info .texinfo .scm .cd .x
  307.  
  308. .cd.c:
  309.     (   echo "/* DO NOT EDIT  --- AUTO-GENERATED --- DO NOT EDIT */" > $@ \
  310.      && echo "#line 1" \"$<\" >> $@ \
  311.      && sed -f $(srcdir)/def.sed $< >> $@) \
  312.         || rm -f $@
  313.  
  314. .c.x:
  315.     if test ! -escmconfig.h ; then \
  316.       touch scmconfig.h; \
  317.       fake_scmconfig=1; \
  318.     else \
  319.       fake_scmconfig=0; \
  320.     fi; \
  321.     $(CC) $(CFLAGS) -I. -DSCM_MAGIC_SNARFER -E $< | grep "^%%%" | sed -e "s/^%%%//" > $@ ; \
  322.     if test $$fake_scmconfig -eq 1 ; then \
  323.       rm scmconfig.h; \
  324.     fi
  325.  
  326. .PHONY: all
  327. all: libguile.a
  328.  
  329. SUBDIR=.
  330. manifest:
  331.     for file in $(manifest) ; \
  332.       do echo $(SUBDIR)/$$file ; \
  333.     done
  334.  
  335. dist:
  336.     mkdir $(guile_dist)
  337.     cd $(guile_dist); \
  338.     for file in $(manifest); do ln -s ../$$file; done; \
  339.     cd ..
  340.     - tar -zhcvf $(guile_dist).tar.gz $(guile_dist)
  341.     rm -rf $(guile_dist)
  342.  
  343.  
  344. libguile.a: $(libobjs)
  345.     rm -f libguile.a
  346.     $(AR) $(AR_FLAGS) libguile.a $(libobjs)
  347.     $(RANLIB) libguile.a
  348.  
  349. guile: gmain.c libguile.a
  350.     $(CCLD) -g -o guile $(srcdir)/gmain.c libguile.a $(LOADLIBES)
  351.  
  352. install: all
  353.     test -d $(prefix) || mkdir $(prefix)
  354.     test -d $(libdir) || mkdir $(libdir)
  355.     test -d $(includedir) || mkdir $(includedir)
  356.     test -d $(includedir)/guile || mkdir $(includedir)/guile
  357.     $(INSTALL) libguile.a $(libdir)/libguile.a
  358.     $(RANLIB) $(libdir)/libguile.a
  359.     for h in $(h_files); do \
  360.       $(INSTALL) $(srcdir)/$$h $(includedir)/guile; \
  361.     done
  362.  
  363. uninstall:
  364.     -for h in $(h_files); do \
  365.       rm -f $(includedir)/guile/$$h; \
  366.     done
  367.     -rmdir -f $(includedir)/guile
  368.     -rm $(libdir)libguile.a
  369.  
  370.  
  371. TAGS:
  372.     etags $(c_sources)
  373.  
  374.  
  375. info:
  376.  
  377. clean:
  378.     -rm -f libguile.a
  379.     -rm -f $(libobjs)
  380.  
  381. distclean: clean
  382.     -rm -f config.cache
  383.     -rm -f config.log
  384.     -rm -f config.status
  385.  
  386. realclean: distclean
  387.     -rm -f $(gen_c_files)
  388.     -rm -f scmconfig.h
  389.  
  390.  
  391. xfiles: $(gen_c_files)
  392.  
  393.  
  394. depends:
  395.     touch scmconfig.h
  396.     touch $(gen_c_files)
  397.     gcc -MM -I. $(c_files)
  398.     rm $(gen_c_files)
  399.     rm scmconfig.h
  400.  
  401.  
  402. ###
  403. arbiters.o : arbiters.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  404.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  405.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  406.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  407.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  408.   arbiters.x 
  409. boolean.o : boolean.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  410.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  411.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  412.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  413.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  414.   boolean.x 
  415. chars.o : chars.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  416.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  417.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  418.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  419.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  420.   chars.x 
  421. continuations.o : continuations.c _scm.h __scm.h tags.h error.h pairs.h boolean.h \
  422.   numbers.h chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h \
  423.   vectors.h lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h \
  424.   vports.h fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h \
  425.   arbiters.h throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h \
  426.   repl.h continuations.x 
  427. dynwind.o : dynwind.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  428.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  429.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  430.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  431.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  432.   dynwind.x 
  433. eq.o : eq.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  434.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  435.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  436.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  437.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h eq.x 
  438. error.o : error.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  439.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  440.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  441.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  442.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  443.   error.x 
  444. feature.o : feature.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  445.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  446.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  447.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  448.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  449. fports.o : fports.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  450.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  451.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  452.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  453.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  454.   fports.x 
  455. files.o : files.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  456.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  457.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  458.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  459.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  460.   files.x 
  461. gc.o : gc.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  462.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  463.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  464.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  465.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h gc.x 
  466. gscm.o : gscm.c gscm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  467.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h record.h \
  468.   unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  469.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  470.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h _scm.h lvectors.h \
  471.   gscm.x 
  472. hash.o : hash.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  473.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  474.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  475.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  476.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h hash.x 
  477. kw.o : kw.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  478.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  479.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  480.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  481.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h kw.x 
  482. lvectors.o : lvectors.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  483.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  484.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  485.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  486.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  487.   lvectors.x 
  488. marksweep.o : marksweep.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  489.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  490.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  491.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  492.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  493. numbers.o : numbers.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  494.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  495.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  496.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  497.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  498.   numbers.x 
  499. pairs.o : pairs.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  500.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  501.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  502.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  503.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  504.   pairs.x 
  505. ports.o : ports.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  506.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  507.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  508.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  509.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  510.   ports.x 
  511. procs.o : procs.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  512.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  513.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  514.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  515.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  516.   procs.x 
  517. simpos.o : simpos.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  518.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  519.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  520.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  521.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  522.   simpos.x 
  523. smob.o : smob.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  524.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  525.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  526.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  527.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  528. record.o : record.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  529.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  530.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  531.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  532.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  533.   record.x 
  534. repl.o : repl.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  535.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  536.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  537.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  538.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h repl.x 
  539. scmsigs.o : scmsigs.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  540.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  541.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  542.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  543.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  544.   scmsigs.x 
  545. stackchk.o : stackchk.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  546.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  547.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  548.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  549.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  550.   stackchk.x 
  551. strports.o : strports.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  552.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  553.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  554.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  555.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  556.   strports.x 
  557. struct.o : struct.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  558.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  559.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  560.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  561.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  562.   struct.x 
  563. symbols.o : symbols.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  564.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  565.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  566.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  567.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  568.   symbols.x 
  569. time.o : time.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  570.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  571.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  572.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  573.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h time.x 
  574. strings.o : strings.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  575.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  576.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  577.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  578.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  579.   strings.x 
  580. strop.o : strop.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  581.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  582.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  583.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  584.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  585.   strop.x 
  586. throw.o : throw.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  587.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  588.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  589.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  590.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  591.   throw.x 
  592. variable.o : variable.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  593.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  594.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  595.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  596.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  597.   variable.x 
  598. vectors.o : vectors.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  599.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  600.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  601.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  602.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  603.   vectors.x 
  604. vports.o : vports.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  605.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  606.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  607.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  608.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h \
  609.   vports.x 
  610. eval.o : eval.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  611.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  612.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  613.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  614.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h eval.x 
  615. gsubr.o : gsubr.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  616.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  617.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  618.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  619.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  620. ramap.o : ramap.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h \
  621.   chars.h smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h \
  622.   lvectors.h record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h \
  623.   fports.h strports.h eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h \
  624.   throw.h eval.h feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  625. unif.o : unif.c _scm.h __scm.h tags.h error.h pairs.h boolean.h numbers.h chars.h \
  626.   smob.h params.h symbols.h strings.h strop.h kw.h variable.h vectors.h lvectors.h \
  627.   record.h unif.h ramap.h struct.h procs.h gsubr.h ports.h vports.h fports.h strports.h \
  628.   eq.h dynwind.h continuations.h time.h hash.h files.h arbiters.h throw.h eval.h \
  629.   feature.h scmsigs.h simpos.h gc.h marksweep.h stackchk.h repl.h 
  630.