Diff for /gforth/Makefile.in between versions 1.167 and 1.174

version 1.167, 2000/04/09 20:57:25 version 1.174, 2000/06/10 21:10:51
Line 72  FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS Line 72  FORTH_FAST = $(ENGINE_FAST) $(FORTH_ARGS
 FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)  FORTHKFLAGS= --die-on-signal -p ".$(PATHSEP)~+$(PATHSEP)$(srcdir)" -i $(kernel_fi)
 FORTHK  = $(ENGINE) $(FORTHKFLAGS)  FORTHK  = $(ENGINE) $(FORTHKFLAGS)
 FORTHP  = $(ENGINE) --die-on-signal -i ./$(kernel_fi)  FORTHP  = $(ENGINE) --die-on-signal -i ./$(kernel_fi)
   STARTUP = -e 3 exboot.fs startup.fs
 STRIP   = strip  STRIP   = strip
 TEXI2DVI = texi2dvi  TEXI2DVI = texi2dvi -e
 DVI2PS  = dvips -Z  DVI2PS  = dvips -Z
 #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/  #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
 TEXI2HTML = texi2html  
 MAKEINFO = makeinfo  MAKEINFO = makeinfo
   TEXI2HTML = texi2html
   
 # ------------- Compiler Flags  # ------------- Compiler Flags
   
Line 118  CVSDIRS = CVS engine/CVS kernel/CVS doc/ Line 119  CVSDIRS = CVS engine/CVS kernel/CVS doc/
         arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \          arch/386/CVS arch/hppa/CVS arch/sparc/CVS arch/power/CVS \
         arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \          arch/alpha/CVS arch/4stack/CVS arch/misc/CVS arch/6502/CVS \
         arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \          arch/8086/CVS arch/avr/CVS arch/c165/CVS arch/h8/CVS \
         arch/shboom/CVS \          arch/shboom/CVS arch/sharc/CVS \
   
 INCLUDES = engine/forth.h engine/threaded.h engine/io.h  INCLUDES = engine/forth.h engine/threaded.h engine/io.h
   
Line 129  KERN_SRC = \ Line 130  KERN_SRC = \
         kernel/aliases.fs \          kernel/aliases.fs \
         kernel/args.fs \          kernel/args.fs \
         chains.fs \          chains.fs \
           kernel/cbr.fs \
           kernel/cloop.fs \
         kernel/cond.fs \          kernel/cond.fs \
         kernel/cond-old.fs \          kernel/cond-old.fs \
         cross.fs \          cross.fs \
Line 182  GFORTH_FI_SRC = \ Line 185  GFORTH_FI_SRC = \
         savesys.fs \          savesys.fs \
         environ.fs \          environ.fs \
         errors.fs \          errors.fs \
           exboot.fs \
         exceptions.fs \          exceptions.fs \
         extend.fs \          extend.fs \
         float.fs \          float.fs \
Line 285  ARCHS = \ Line 289  ARCHS = \
         arch/shboom/prim.fs \          arch/shboom/prim.fs \
         arch/shboom/dis2.fs \          arch/shboom/dis2.fs \
         arch/shboom/sh.p \          arch/shboom/sh.p \
         arch/shboom/doers.fs          arch/shboom/doers.fs \
           arch/sharc/mach.fs \
           arch/sharc/machine.h \
           arch/sharc/compile.sharc \
           arch/sharc/unistd.h \
           arch/sharc/systypes.h \
           arch/sharc/types.h \
           arch/sharc/g21k-3.3.4-bp1.diff
   
 SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \  SOURCES = $(CVSDIRS) compat Makefile.in Makedist.in engine/Makefile.in gforthmi.in \
         configure.in configure config.sub config.guess elisp-comp missing \          configure.in configure config.sub config.guess elisp-comp missing \
Line 395  distclean: clean Line 406  distclean: clean
                 doc/version.texi gforthmi                  doc/version.texi gforthmi
   
 #realclean is useless, but dangerous, so it's commented out  #realclean is useless, but dangerous, so it's commented out
 #realclean:     distclean  realclean:      distclean
 #               -$(RM) $(GEN_PRECIOUS)                  -$(RM) $(GEN_PRECIOUS)
   
 #mostlyclean, but also remove some of the stuff that is distributed  #mostlyclean, but also remove some of the stuff that is distributed
 virtualclean:   mostlyclean  virtualclean:   mostlyclean
Line 455  install: gforth$(EXE) $(FORTH_SRC) $(ker Line 466  install: gforth$(EXE) $(FORTH_SRC) $(ker
                 done                  done
                 $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)                  $(INSTALL_DATA) $(kernel_fi) $(datadir)/gforth/$(VERSION)
                 $(RM) gforth.fi                  $(RM) gforth.fi
                 GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) startup.fs #gforth.fi contains some path names                  GFORTHD="./gforth-ditc -p$(libdir)/gforth/site-forth$(PATHSEP)$(siteforthdir)$(PATHSEP)$(datadir)/gforth/$(VERSION) -i $(kernel_fi)" GFORTH="./gforth-ditc --die-on-signal -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(STARTUP) #gforth.fi contains some path names
                 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
                 $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS                  $(INSTALL_DATA) install.TAGS $(datadir)/gforth/$(VERSION)/TAGS
                 # after install, remove these because they are owned by ROOT                  # after install, remove these because they are owned by ROOT
Line 566  kernl64l.fi: $(KERNLS) Line 577  kernl64l.fi: $(KERNLS)
 #               -$(CP) $< $@  #               -$(CP) $< $@
   
 gforth.fi:      $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)  gforth.fi:      $(kernel_fi) gforthmi gforth$(EXE) gforth-ditc$(EXE) $(GFORTH_FI_SRC)
                 GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) startup.fs" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs                  GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc --die-on-signal -p .$(PATHSEP)$(srcdir) -i $(kernel_fi) $(STARTUP)" ./gforthmi gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
   
 # ------------- Make c-engine  # ------------- Make c-engine
   
Line 608  gforth-ditc$(EXE): engines Line 619  gforth-ditc$(EXE): engines
                 $(CP) engine/$@ $@                  $(CP) engine/$@ $@
                 @GFORTHDITC_EXE@                  @GFORTHDITC_EXE@
   
 engines:        FORCE engine/Makefile  engines:        FORCE engine/Makefile engine/prim.i engine/prim_lab.i
                 cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)                  cd engine && $(MAKE) gforth$(EXE) gforth-fast$(EXE) gforth-ditc$(EXE)
   
 # ------------- additional C primitives  # ------------- additional C primitives
Line 629  install.TAGS: gforth.TAGS Line 640  install.TAGS: gforth.TAGS
                 sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS                  sed 's:^\$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >install.TAGS
   
 gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS  gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) prim.TAGS
                 $(FORTHK) etags.fs startup.fs -e bye                  $(FORTHK) etags.fs exceptions.fs startup.fs -e bye
                 cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS                  cat TAGS prim.TAGS kernel.TAGS >gforth.TAGS
                 rm TAGS                  rm TAGS
   
Line 639  prim.TAGS:  prim.b prims2x.fs Line 650  prim.TAGS:  prim.b prims2x.fs
                 $(RM) $@-                  $(RM) $@-
   
 doc/doc.fd:     doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs  doc/doc.fd:     doc/makedoc.fs $(GFORTH_FI_SRC) code.fs objects.fs oof.fs moofglos.fs
                 $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye                  $(FORTHK) -e "s\" doc/doc.fd\"" doc/makedoc.fs exceptions.fs startup.fs code.fs objects.fs oof.fs moofglos.fs -e bye
   
 doc/crossdoc.fd:        $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)  doc/crossdoc.fd:        $(KERN_SRC) kernel/version.fs $(FORTH_GEN0)
                 $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye                  $(FORTHK) -e 's" mach32l.fs"' kernel/main.fs -e bye
Line 671  html:  $(GFORTH_TEXI) Line 682  html:  $(GFORTH_TEXI)
                 -$(RMTREE) html                  -$(RMTREE) html
                 -mkdir html                  -mkdir html
 ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..  ### need makeinfo 4.0 to generate html. Otherwise, use texi2html..
 ###             cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi                  cd html; $(MAKEINFO) --html -I ../doc ../doc/gforth.texi
                 cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi  ###             cd html; $(TEXI2HTML) -menu -split_node ../doc/gforth.texi
   
 doc/gforth.txt: $(GFORTH_TEXI)  doc/gforth.txt: $(GFORTH_TEXI)
                 -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt                  -cd doc; $(MAKEINFO) --no-headers --no-split gforth.texi >gforth.txt

Removed from v.1.167  
changed lines
  Added in v.1.174


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>