Diff for /gforth/Makefile.in between versions 1.93 and 1.99

version 1.93, 1997/03/23 21:22:02 version 1.99, 1997/04/10 15:41:49
Line 26 Line 26
 #gforth version  #gforth version
 VERSION_MAJOR=0  VERSION_MAJOR=0
 VERSION_MINOR=3  VERSION_MINOR=3
 VERSION_RELEASE=0  VERSION_RELEASE=1
 VERSION =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)  VERSION =$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE)
 DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)  DOSVERSION=$(VERSION_MAJOR)$(VERSION_MINOR)$(VERSION_RELEASE)
 SHELL   = /bin/sh  SHELL   = /bin/sh
Line 50  FORTHP = ./gforth -i ./kernel.fi Line 50  FORTHP = ./gforth -i ./kernel.fi
 STRIP   = strip  STRIP   = strip
 TEXI2DVI = texi2dvi  TEXI2DVI = texi2dvi
 DVI2PS  = dvips -D300  DVI2PS  = dvips -D300
 #you can get texi2html from http://asis01.cern.ch/infohtml/texi2html.html  #you can get texi2html from http://wwwcn.cern.ch/dci/texi2html/
 TEXI2HTML = texi2html  TEXI2HTML = texi2html
 MAKEINFO = makeinfo  MAKEINFO = makeinfo
 XCFLAGS = @CFLAGS@  XCFLAGS = @CFLAGS@
Line 162  SOURCES = CVS compat Makefile.in gforth- Line 162  SOURCES = CVS compat Makefile.in gforth-
         strerror.c strsignal.c dblsub.c \          strerror.c strsignal.c dblsub.c \
         INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \          INSTALL.DOS makefile.dos mkdosmf.sed configure.bat dosconf.h \
         gforth-makeimage.bat startup.dos history.dos mkinstalldirs \          gforth-makeimage.bat startup.dos history.dos mkinstalldirs \
         configure.cmd mkos2mf.sed os2conf.h makefile.os2 \          configure.cmd mkos2mf.sed os2conf.h makefile.os2 gforth-makeimage.cmd \
         glosgen.glo glossaries.doc \          glosgen.glo glossaries.doc \
         $(INCLUDES) $(FORTH_SRC)          $(INCLUDES) $(FORTH_SRC)
   
Line 181  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor Line 181  FORTH_GEN =  $(FORTH_GEN0) @KERNEL@ gfor
 FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@   FORTH_GEN1 = $(FORTH_GEN0) @kernel_fi@ 
   
 #distributed documentation  #distributed documentation
 DOCDIST = gforth.info* gforth.ps  DOCDIST = gforth.info gforth.info-* gforth.ps
   
 #stuff in a binonly distribution   #stuff in a binonly distribution 
 BINONLYDIST = config.status Makefile gforth gforth-ditc \  BINONLYDIST = config.status Makefile gforth gforth-ditc \
Line 204  all: version.fs more Line 204  all: version.fs more
   
 #this rule avoids remaking everything after minor changes in Makefile.in  #this rule avoids remaking everything after minor changes in Makefile.in
 version-stamp:  Makefile.in  version-stamp:  Makefile.in
                 (test -r $@ && test x'$(VERSION)' = x`cat $@`) || echo $(VERSION) >$@                  if test -r $@ && test x'$(VERSION)' = x`cat $@` ; then true ; else echo $(VERSION) > $@ ; fi
   
 version.h:      version-stamp  version.h:      version-stamp
                 echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@                  echo "static char gforth_version[]=\"$(VERSION)\" ;" >$@
Line 327  install: gforth $(FORTH_SRC) kernel.fi g Line 327  install: gforth $(FORTH_SRC) kernel.fi g
                 $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) kernel.fi $(libdir)/gforth/$(VERSION)
                 $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names                  $(RM) gforth.fi; $(MAKE) gforth.fi #gforth.fi contains some path names
                 $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) gforth.fi $(libdir)/gforth/$(VERSION)
                 sed s:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/: gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)                  sed 's:^$(srcdir)/:$(datadir)/gforth/$(VERSION)/:' gforth.TAGS >TAGS; $(INSTALL_DATA) TAGS $(datadir)/gforth/$(VERSION)
                 if test -d $(emacssitelispdir); then \                  if test -d $(emacssitelispdir); then \
                         $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \                          $(INSTALL_DATA) $(srcdir)/gforth.el $(emacssitelispdir); \
                 else \                  else \
Line 352  check test: gforth gforth.fi Line 352  check test: gforth gforth.fi
                 $(FORTH) other-tests.fs -e bye                  $(FORTH) other-tests.fs -e bye
                 $(FORTH) code.fs checkans.fs -e bye                  $(FORTH) code.fs checkans.fs -e bye
                 @echo 'Expect no differences'                  @echo 'Expect no differences'
                 $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/primitives.b\" ' output-c process-file bye"| diff -c - $(srcdir)/primitives.i                  $(FORTH) -m 100000 prims2x.fs -e "s\" $(srcdir)/primitives.b\"' output-c process-file bye"| diff -c - $(srcdir)/primitives.i
   
 bench:          gforth gforth.fi  bench:          gforth gforth.fi
                 @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'                  @echo 'Each benchmark takes about 30s on a 486-66 (gcc-2.6.3 -DFORCE_REG)'
Line 366  dvi:  gforth.dvi Line 366  dvi:  gforth.dvi
 gforth:         $(OBJECTS) $(OBJECTS0)  gforth:         $(OBJECTS) $(OBJECTS0)
                 -$(CP) gforth gforth~                  -$(CP) gforth gforth~
                 $(GCC) $(LDFLAGS) $(OBJECTS) $(OBJECTS0) $(LDLIBS) -o $@                  $(GCC) $(LDFLAGS) $(OBJECTS) $(OBJECTS0) $(LDLIBS) -o $@
                 @MAKE_EXE@                  @GFORTH_EXE@
   
 gforth-ditc:    $(OBJECTS_DITC) $(OBJECTS0)  gforth-ditc:    $(OBJECTS_DITC) $(OBJECTS0)
                 $(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(OBJECTS0) $(LDLIBS) -o $@                  $(GCC) $(LDFLAGS) $(OBJECTS_DITC) $(OBJECTS0) $(LDLIBS) -o $@
                 @MAKE_EXE@                  @GFORTHDITC_EXE@
   
 kernl16l.fi-:   $(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)  kernl16l.fi-:   $(KERN_SRC) version.fs mach16l.fs $(FORTH_GEN0)
                 $(FORTHK) -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"                  $(FORTHK) -e 's" mach16l.fs"' main.fs -e "save-cross kernl16l.fi- $(bindir)/gforth-$(VERSION) bye"
Line 422  kernl%.fi: kernl%.fi- $(KERNLS) Line 422  kernl%.fi: kernl%.fi- $(KERNLS)
                 -$(CP) $< $@                  -$(CP) $< $@
   
 gforth.fi:      @kernel_fi@ gforth-makeimage gforth gforth-ditc $(GFORTH_FI_SRC)  gforth.fi:      @kernel_fi@ gforth-makeimage gforth gforth-ditc $(GFORTH_FI_SRC)
                 GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" $(srcdir)/gforth-makeimage gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs                  GFORTHD="./gforth-ditc -p .$(PATHSEP)$(srcdir)" GFORTH="./gforth-ditc -p .$(PATHSEP)$(srcdir) -i kernel.fi startup.fs" $(srcdir)/gforth-makeimage gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) startup.fs
   
 #TAGS is a GNU standard target  #TAGS is a GNU standard target
 TAGS:           gforth.TAGS  TAGS:           gforth.TAGS
Line 505  gforth.ps: gforth.dvi Line 505  gforth.ps: gforth.dvi
   
 info:           gforth.info  info:           gforth.info
   
 gforth.info:    gforth.texi  gforth.info gforth.info-*:      gforth.texi
                 -$(MAKEINFO) gforth.texi                  -$(MAKEINFO) gforth.texi
   
 html:           gforth.texi  html:           gforth.texi

Removed from v.1.93  
changed lines
  Added in v.1.99


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