Diff for /gforth/Makefile.in between versions 1.50 and 1.52

version 1.50, 1995/12/23 16:21:55 version 1.52, 1996/01/07 17:22:06
Line 26 Line 26
 #To do:  #To do:
 #use $(srcdir) to make compilation in a non-srcdir possible  #use $(srcdir) to make compilation in a non-srcdir possible
   
 VERSION =0.1beta-pl1#gforth version  VERSION =0.2.0#gforth version
 SHELL   = /bin/sh  SHELL   = /bin/sh
 RM      = rm  RM      = rm
 CP      = cp  CP      = cp
Line 58  GCCLDFLAGS = @GCCLDFLAGS@ Line 58  GCCLDFLAGS = @GCCLDFLAGS@
 LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)  LDFLAGS =  $(DEBUGFLAG) $(XLDFLAGS) $(GCCLDFLAGS)
 LDLIBS  = @LIBS@  LDLIBS  = @LIBS@
   
   VPATH = @srcdir@
 prefix = @prefix@  prefix = @prefix@
 exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
 srcdir = @srcdir@  srcdir = @srcdir@
Line 67  datadir = $(prefix)/share Line 68  datadir = $(prefix)/share
 #read-only architecture-dependent non-ascii files  #read-only architecture-dependent non-ascii files
 libdir = $(prefix)/lib  libdir = $(prefix)/lib
 infodir = $(prefix)/info  infodir = $(prefix)/info
 mandir = $(prefix)/man/man1  mandir = $(prefix)/man
   man1dir= $(mandir)/man1
   man1ext= .1
 INCLUDES = forth.h threading.h io.h io-dos.h  #older emacses have their site-lisp in $(libdir)/emacs/
   emacssitelispdir=$(datadir)/emacs/site-lisp
 KERN_SRC = main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \  
         errore.fs kernal.fs version.fs extend.fs tools.fs toolsext.fs  INCLUDES = forth.h threading.h io.h io-dos.h config.h
   
 GFORTH_FI_SRC = startup.fs glocals.fs search-order.fs hash.fs float.fs \  KERN_SRC = \
         debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs \          add.fs \
         bufio.fs debug.fs history.fs vt100key.fs assert.fs source.fs \          aliases.fs \
         blocks.fs struct.fs dumpimage.fs          cross.fs \
           errore.fs \
 FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs answords.fs blocks.fs bufio.fs checkans.fs \          extend.fs \
         code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \          kernal.fs \
         dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \          main.fs \
         float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \          search-order.fs \
         kernal.fs locals-test.fs look.fs main.fs makedoc.fs \          tools.fs \
           toolsext.fs \
           vars.fs \
           version.fs
   
   GFORTH_FI_SRC = \
           assert.fs \
           blocks.fs \
           bufio.fs \
           debug.fs \
           debugging.fs \
           dumpimage.fs \
           environ.fs \
           float.fs \
           glocals.fs \
           hash.fs \
           history.fs \
           look.fs \
           search-order.fs \
           see.fs \
           source.fs \
           startup.fs \
           struct.fs \
           stuff.fs \
           termsize.fs \
           vt100.fs \
           vt100key.fs \
           wordinfo.fs
   
   FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_SRC) \
           anslocal.fs ansi.fs answords.fs \
           checkans.fs \
           code.fs colorize.fs \
           doskey.fs ds2texi.fs \
           etags.fs filedump.fs \
           glosgen.fs gray.fs \
           makedoc.fs \
         mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \          mach16b.fs mach16l.fs mach32b.fs mach32l.fs mach64b.fs mach64l.fs \
         other.fs prims2x.fs random.fs search-order.fs see.fs sieve.fs source.fs \          more.fs other.fs prims2x.fs random.fs \
         startup.fs site-init.fs struct.fs tools.fs toolsext.fs tt.fs vars.fs \          sieve.fs \
         vt100.fs vt100key.fs wordinfo.fs wordsets.fs \          site-init.fs \
           tt.fs sokoban.fs \
           wordsets.fs \
         tester.fs coretest.fs \          tester.fs coretest.fs \
         bubble.fs siev.fs matrix.fs fib.fs          bubble.fs siev.fs matrix.fs fib.fs
   
 SOURCES = CVS Makefile.in configure.in configure config.sub  config.guess \  SOURCES = CVS Makefile.in configure.in configure config.sub config.guess \
           acconfig.h config.h.in \
         install-sh INSTALL README ToDo BUGS model COPYING Benchres \          install-sh INSTALL README ToDo BUGS model COPYING Benchres \
         gforth.ds texinfo.tex gforth.1 gforth.el \          gforth.ds texinfo.tex gforth.1 gforth.el \
         primitives engine.c main.c io.c \          primitives engine.c main.c io.c \
Line 162  clean:  mostlyclean Line 202  clean:  mostlyclean
                 -$(RM) -rf $(GEN) *.o                   -$(RM) -rf $(GEN) *.o 
   
 distclean:      clean  distclean:      clean
                 -$(RM) machine.h kernal.fi config.cache config.log config.status Makefile                  -$(RM) machine.h kernal.fi config.cache config.log config.status config.h Makefile
   
 realclean:      distclean  realclean:      distclean
                 -$(RM) $(GEN_PRECIOUS)                  -$(RM) $(GEN_PRECIOUS)
Line 224  install: gforth $(FORTH_SRC) kernal.fi g Line 264  install: gforth $(FORTH_SRC) kernal.fi g
                 $(INSTALL_DATA) kernal.fi $(libdir)/gforth/$(VERSION)                  $(INSTALL_DATA) kernal.fi $(libdir)/gforth/$(VERSION)
                 $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names                  $(FORTHK) startup.fs dumpimage.fs -e "savesystem $(libdir)/gforth/$(VERSION)/gforth.fi bye" #gforth.fi contains some path names
                 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 \
                           $(INSTALL_DATA) gforth.el $(emacssitelispdir); \
                   else ; \
                           echo "please install gforth.el in your .../emacs/site-lisp directory"; \
                   fi
   
 #deinstall all files specific to this version of gforth  #deinstall all files specific to this version of gforth
 #to uninstall version foo, type `make uninstall VERSION=foo'  #to uninstall version foo, type `make uninstall VERSION=foo'
Line 369  html:  gforth.texi Line 414  html:  gforth.texi
   
 # For an explanation of the following Makefile rules, see node  # For an explanation of the following Makefile rules, see node
 # `Automatic Remaking' in GNU Autoconf documentation.  # `Automatic Remaking' in GNU Autoconf documentation.
   ${srcdir}/configure: configure.in 
                   cd ${srcdir} && autoconf
        
   # autoheader might not change config.h.in, so touch a stamp file.
   ${srcdir}/config.h.in: stamp-h.in
   ${srcdir}/stamp-h.in: configure.in  acconfig.h
                   cd ${srcdir} && autoheader
                   echo timestamp > ${srcdir}/stamp-h.in
   
   config.h: stamp-h
   stamp-h: config.h.in config.status
                   CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
                   echo > stamp-h
 Makefile: Makefile.in config.status  Makefile: Makefile.in config.status
         CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status                  CONFIG_FILES=$@ CONFIG_HEADERS=config.h ./config.status
        
 config.status: configure  config.status: configure
         ./config.status --recheck                  ./config.status --recheck
 configure: configure.in  
         cd $(srcdir) && autoconf  
   
   #create files for DOS, because DOS cannot do it itself
 makefile.dos: mkdosmf.sed Makefile.in  makefile.dos: mkdosmf.sed Makefile.in
         sed -f mkdosmf.sed <Makefile.in >makefile.dos          sed -f mkdosmf.sed <Makefile.in >makefile.dos
   
Line 385  history.dos: history.fs Makefile.in Line 444  history.dos: history.fs Makefile.in
 startup.dos: startup.fs Makefile.in  startup.dos: startup.fs Makefile.in
         sed -e "s/\\\\ include doskey/include doskey/g" \          sed -e "s/\\\\ include doskey/include doskey/g" \
             -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos              -e "s/include vt100key/\\\\ include vt100key/g" <startup.fs >startup.dos
   

Removed from v.1.50  
changed lines
  Added in v.1.52


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