Diff for /gforth/Makefile.in between versions 1.34 and 1.36

version 1.34, 1995/10/11 19:39:32 version 1.36, 1995/10/26 22:48:38
Line 30  XDEFINES = @DEFS@ Line 30  XDEFINES = @DEFS@
 SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions  SWITCHES = $(XCFLAGS) $(XDEFINES) #-DNDEBUG #turn off assertions
 ENGINE_FLAGS =  -fno-defer-pop -fcaller-saves  ENGINE_FLAGS =  -fno-defer-pop -fcaller-saves
 DEBUGFLAG = @DEBUGFLAG@  DEBUGFLAG = @DEBUGFLAG@
 CFLAGS  = -pipe -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(datadir)/gforth/$(VERSION):$(libdir)/gforth/$(VERSION):.\"  CFLAGS  = $(DEBUGFLAG) -pipe -O4 -Wall $(SWITCHES) -DDEFAULTPATH=\"$(datadir)/gforth/$(VERSION):$(libdir)/gforth/$(VERSION):.\"
   
 #John Wavrik should use -Xlinker -N to get a writable text (executable)  #John Wavrik should use -Xlinker -N to get a writable text (executable)
 XLDFLAGS = @LDFLAGS@  XLDFLAGS = @LDFLAGS@
Line 50  infodir = $(prefix)/info Line 50  infodir = $(prefix)/info
 mandir = $(prefix)/man/man1  mandir = $(prefix)/man/man1
   
   
 INCLUDES = forth.h io.h  INCLUDES = forth.h threading.h io.h
   
 KERN_SRC = main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \  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          errore.fs kernal.fs version.fs extend.fs tools.fs toolsext.fs
   
 FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs blocks.fs bufio.fs checkans.fs \  FORTH_SRC = anslocal.fs add.fs assert.fs ansi.fs answords.fs blocks.fs bufio.fs checkans.fs \
         code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \          code.fs colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \
         dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \          dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \
         float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \          float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \
Line 73  SOURCES = Makefile.in configure.in confi Line 73  SOURCES = Makefile.in configure.in confi
         m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \          m68k.h mips.h 386.h hppa.h cache.c sparc.h power.h alpha.h 32bit.h \
         getopt.c getopt1.c getopt.h select.c \          getopt.c getopt1.c getopt.h select.c \
         ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \          ecvt.c memcmp.c strtol.c strtoul.c ansidecl.h memmove.c pow10.c \
         strerror.c \          strerror.c strsignal.c \
         makefile.dos mkdosmf.sed configure.bat startup.dos \          makefile.dos mkdosmf.sed configure.bat startup.dos \
         glosgen.glo glossaries.doc \          glosgen.glo glossaries.doc \
         $(INCLUDES) $(FORTH_SRC)          $(INCLUDES) $(FORTH_SRC)
Line 245  kernl64l.fi: $(KERNLS) Line 245  kernl64l.fi: $(KERNLS)
 gforth.fi:      @kernal_fi@ gforth startup.fs glocals.fs search-order.fs hash.fs float.fs debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs bufio.fs debug.fs history.fs vt100key.fs assert.fs blocks.fs struct.fs dumpimage.fs  gforth.fi:      @kernal_fi@ gforth startup.fs glocals.fs search-order.fs hash.fs float.fs debugging.fs environ.fs wordinfo.fs look.fs vt100.fs see.fs bufio.fs debug.fs history.fs vt100key.fs assert.fs blocks.fs struct.fs dumpimage.fs
                 $(FORTHK) startup.fs dumpimage.fs -e "savesystem gforth.fi bye"                  $(FORTHK) startup.fs dumpimage.fs -e "savesystem gforth.fi bye"
   
 engine.s:       engine.c primitives.i prim_labels.i machine.h $(INCLUDES)  engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c                  $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S engine.c
   
 engine.o:       engine.c primitives.i prim_labels.i machine.h $(INCLUDES)  engine.o:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES)
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c                  $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c engine.c
   
   main.o:         main.c machine.h threading.h $(INCLUDES)
                   $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -c main.c
   
 strtoul.o:      strtoul.c strtol.c  strtoul.o:      strtoul.c strtol.c
   
 primitives.b:   primitives  primitives.b:   primitives
Line 281  doc.fd:  makedoc.fs float.fs search-orde Line 284  doc.fd:  makedoc.fs float.fs search-orde
                  doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs                   doskey.fs vt100key.fs startup.fs assert.fs debugging.fs code.fs
                 $(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye                  $(FORTHK) -e "s\" doc.fd\"" makedoc.fs startup.fs code.fs -e bye
   
   crossdoc.fd:    $(KERN_SRC) $(FORTH_GEN0)
                   $(FORTHK) -e 's" mach32l.fs"' main.fs
   
 gforth.texi:    gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd  gforth.texi:    gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd
                 $(FORTHK) ds2texi.fs >$@                  $(FORTHK) ds2texi.fs -e "s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@
   
   checkdoc:       gforth.ds primitives.b ds2texi.fs prims2x.fs doc.fd crossdoc.fd answords.fs
                   $(FORTHK) ds2texi.fs answords.fs -e bye
   
 gforth.dvi:     gforth.texi  gforth.dvi:     gforth.texi
                 $(TEXI2DVI) gforth.texi                  $(TEXI2DVI) gforth.texi

Removed from v.1.34  
changed lines
  Added in v.1.36


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