Diff for /gforth/Makefile.in between versions 1.2 and 1.7

version 1.2, 1994/11/15 15:55:31 version 1.7, 1994/11/29 16:22:32
Line 1 Line 1
 #Copyright 1992 by the ANSI figForth Development Group  #Copyright 1992 by the ANSI figForth Development Group
   
 RM      = echo 'Trying to remove'  VERSION =#gforth version
   RM      = rm
   CP      = cp
 GCC     = gcc  GCC     = gcc
 FORTH   = gforth  FORTH   = gforth
 CC      = gcc  CC      = gcc
 MAKE = gmake  MAKE    = gmake
 XCFLAGS =  XCFLAGS =
 XDEFINES        =  XDEFINES        =
 SWITCHES        = $(XCFLAGS) $(XDEFINES) -DDEFAULTBIN='"'`pwd`'"' #-DNDEBUG #turn off assertions  SWITCHES        = $(XCFLAGS) $(XDEFINES) -DDEFAULTBIN='"'`pwd`'"' #-DNDEBUG #turn off assertions
Line 19  EMACS = emacs Line 21  EMACS = emacs
   
 INCLUDES = forth.h io.h  INCLUDES = forth.h io.h
   
 FORTH_SRC = add.fs assert.fs blocks.fs bufio.fs cross.fs debug.fs \  FORTH_SRC = add.fs assert.fs ansi.fs blocks.fs bufio.fs checkans.fs \
         debugging.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \          colorize.fs cross.fs debug.fs debugging.fs doskey.fs ds2texi.fs \
         float.fs glocals.fs glosgen.fs gray.fs hash.fs kernal.fs \          dumpimage.fs environ.fs errore.fs etags.fs extend.fs filedump.fs \
         locals-test.fs look.fs mach32b.fs mach32l.fs main.fs other.fs \          float.fs glocals.fs glosgen.fs gray.fs hash.fs history.fs \
         prims2x.fs search-order.fs see.fs sieve.fs startup.fs struct.fs \          kernal.fs locals-test.fs look.fs mach32b.fs mach32l.fs main.fs \
         test2.fs tools.fs toolsext.fs vars.fs vt100.fs wordinfo.fs          other.fs prims2x.fs random.fs search-order.fs see.fs sieve.fs \
           startup.fs struct.fs tools.fs toolsext.fs tt.fs vars.fs vt100.fs \
 SOURCES = Makefile primitives primitives2c.el engine.c main.c io.c \          vt100key.fs wordinfo.fs wordsets.fs
         apollo68k.h decstation.h 386.h hppa.h sparc.h gforth.ds \  
   SOURCES = Makefile.in configure  config.sub  config.guess \
           INSTALL README ToDo BUGS model gforth.ds \
           primitives engine.c main.c io.c \
           apollo68k.h decstation.h 386.h hppa.h cache.c ecvt.c sparc.h \
           getopt.c getopt1.c getopt.h \
           makefile.dos io-dos.h configure.bat startup.dos \
           glosgen.glo glossaries.doc \
         $(INCLUDES) $(FORTH_SRC)          $(INCLUDES) $(FORTH_SRC)
   
 RCS_FILES = $(SOURCES) INSTALL ToDo model high-level  RCS_FILES =  ToDo model high-level
   
 GEN = gforth  GEN = gforth
   
 GEN_PRECIOUS = primitives.i prim_labels.i primitives.b aliases.fs  
   
 OBJECTS = engine.o io.o main.o  OBJECTS = engine.o io.o main.o
   
 # things that need a working forth system to be generated  # things that need a working forth system to be generated
 # this is used for antidependences,  # this is used for antidependences,
 FORTH_GEN = primitives.i prim_labels.i aliases.fs \  
         kernl32l.fi kernl32b.fi gforth.texi  FORTH_GEN =  primitives.b primitives.i prim_labels.i aliases.fs kernl32l.fi kernl32b.fi
   
   GEN_PRECIOUS = $(FORTH_GEN) gforth.texi gforth.dvi gforth.ps Makefile
   
 all:  all:
         if [ ! -x gforth ]; then $(MAKE) first; fi          if [ ! -f gforth ]; then $(MAKE) first; fi
         $(MAKE) more          $(MAKE) more
   
 first:  gforth  first:  gforth
   
 more:   gforth $(FORTH_GEN)  more:   $(FORTH_GEN) gforth
   
 #from the gcc Makefile:   #from the gcc Makefile: 
 #"Deletion of files made during compilation.  #"Deletion of files made during compilation.
Line 63  more: gforth $(FORTH_GEN) Line 72  more: gforth $(FORTH_GEN)
 # `realclean' also deletes everything that could be regenerated automatically."  # `realclean' also deletes everything that could be regenerated automatically."
   
 clean:            clean:          
                 -rm $(GEN) *.o *.s                  -$(RM) $(GEN) *.o *.s
   
 distclean:      clean  distclean:      clean
                 -rm machine.h machine.fs                  -$(RM) machine.h
   
 realclean:      distclean  realclean:      distclean
                 -rm $(GEN_PRECIOUS)                  -$(RM) $(GEN_PRECIOUS)
   
   package:        $(SOURCES) $(FORTH_GEN)
                   -rm ../gforth-$(VERSION)
                   ln -s `pwd` ../gforth-$(VERSION)
                   echo "" $(SOURCES) $(FORTH_GEN) |\
                           sed -e 's| | gforth-$(VERSION)/|g' |\
                           (cd ..; xargs tar cvf gforth/gforth-$(VERSION).tar)
                   gzip -9 -f gforth-$(VERSION).tar
                   -rm ../gforth-$(VERSION)
   
 #does not work  Makefile:       Makefile.in
 #gforth.tar.gz: $(SOURCES) $(GEN_PRECIOUS) CVS                  configure
 #               cd ..; tar cvf gforth/gforth.tar gforth/{$^}; gzip -9 gforth/gforth.tar  
   
 gforth: $(OBJECTS)  gforth: $(OBJECTS)
                 -cp gforth gforth~                  -$(CP) gforth gforth~
                 $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@                  $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
                   @MAKE-EXECUTE@
   
 kernl32l.fi:    main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \  kernl32l.fi:    main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \
                 errore.fs kernal.fs extend.fs tools.fs toolsext.fs \                  errore.fs kernal.fs extend.fs tools.fs toolsext.fs \
                 mach32l.fs $(FORTH_GEN)                  mach32l.fs $(FORTH_GEN)
                 -cp kernl32l.fi kernl32l.fi~                  -$(CP) kernl32l.fi kernl32l.fi~
                 $(FORTH) -e 's" mach32l.fs"' main.fs                  $(FORTH) -e 's" mach32l.fs"' main.fs
                   @LINK-KERNL32L@
   
 kernl32b.fi:    main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \  kernl32b.fi:    main.fs search-order.fs cross.fs aliases.fs vars.fs add.fs \
                 errore.fs kernal.fs extend.fs tools.fs toolsext.fs \                  errore.fs kernal.fs extend.fs tools.fs toolsext.fs \
                 mach32b.fs $(FORTH_GEN)                  mach32b.fs $(FORTH_GEN)
                 -cp kernl32b.fi kernl32b.fi~                  -$(CP) kernl32b.fi kernl32b.fi~
                 $(FORTH) -e 's" mach32b.fs"' main.fs                  $(FORTH) -e 's" mach32b.fs"' main.fs
                   @LINK-KERNL32B@
   
 engine.s:       engine.c primitives.i prim_labels.i machine.h $(INCLUDES)  engine.s:       engine.c primitives.i prim_labels.i machine.h $(INCLUDES)
                 $(GCC) $(CFLAGS) -S engine.c                  $(GCC) $(CFLAGS) -S engine.c
Line 112  primitives.fs: primitives.b prims2x.fs Line 132  primitives.fs: primitives.b prims2x.fs
                 $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@                  $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-forth process-file bye" >$@
   
 gforth.texi:    gforth.ds primitives.b ds2texi.fs prims2x.fs  gforth.texi:    gforth.ds primitives.b ds2texi.fs prims2x.fs
                 $(FORTH) -e "warnings off" search-order.fs struct.fs debugging.fs ds2texi.fs prims2x.fs -e "s\" primitives.b\" ' register-doc process-file s\" gforth.ds\" r/o open-file throw ds2texi bye" >$@                  $(FORTH) ds2texi.fs >$@
   
 gforth.dvi:     gforth.texi  gforth.dvi:     gforth.texi
                 tex gforth.texi                  tex gforth.texi
   
 #primitives.4th:        primitives.b primitives2c.el  gforth.ps:      gforth.dvi
 #               $(EMACS) -batch -load primitives2c.el -funcall make-forth                  dvips gforth.dvi -o $@
   
 #GNU make default rules  
 #% ::           RCS/%,v  
 #               co $@  
   
 %.s :           %.c $(INCLUDES)  %.s :           %.c $(INCLUDES)
                 $(CC) $(CFLAGS) -S $< -o $@                  $(CC) $(CFLAGS) -S $< -o $@

Removed from v.1.2  
changed lines
  Added in v.1.7


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