Diff for /gforth/Attic/Makefile between versions 1.4 and 1.14

version 1.4, 1994/06/17 12:34:55 version 1.14, 1994/09/02 15:23:32
Line 2 Line 2
   
 RM      = echo 'Trying to remove'  RM      = echo 'Trying to remove'
 GCC     = gcc  GCC     = gcc
   FORTH   = gforth
 CC      = gcc  CC      = gcc
 SWITCHES = -D_POSIX_VERSION #-DUSE_TOS -DUSE_FTOS -DDEFAULTBIN='"'$(PWD)'"' # -DDIRECT_THREADED   SWITCHES = \
           -fno-defer-pop -fcaller-saves \
           -D_POSIX_VERSION -DUSE_TOS -DUSE_FTOS -DDEFAULTBIN='"'`pwd`'"' \
           #-DDIRECT_THREADED #-DNDEBUG #turn off assertions
 CFLAGS  = -O4 -Wall -g $(SWITCHES)  CFLAGS  = -O4 -Wall -g $(SWITCHES)
   
 #-Xlinker -n puts text and data into the same 256M region  #-Xlinker -n puts text and data into the same 256M region
 #John Wavrik should use -Xlinker -N to get a writable text (executable)  #John Wavrik should use -Xlinker -N to get a writable text (executable)
 LDFLAGS = -g # -Xlinker -N  LDFLAGS = -g -Xlinker -N
 LDLIBS = -lm  LDLIBS = -lm
   
 EMACS   = emacs  EMACS   = emacs
Line 16  EMACS = emacs Line 20  EMACS = emacs
 INCLUDES = forth.h io.h  INCLUDES = forth.h io.h
   
 FORTH_SRC = cross.fs debug.fs environ.fs errore.fs extend.fs \  FORTH_SRC = cross.fs debug.fs environ.fs errore.fs extend.fs \
         filedump.fs glosgen.fs kernal.fs look.fs machine32b.fs \          filedump.fs glosgen.fs kernal.fs look.fs mach32b.fs \
         machine32l.fs main.fs other.fs search-order.fs see.fs sieve.fs \          mach32l.fs main.fs other.fs search-order.fs see.fs sieve.fs \
         struct.fs tools.fs toolsext.fs vars.fs wordinfo.fs          struct.fs tools.fs toolsext.fs vars.fs wordinfo.fs
   
 SOURCES = Makefile primitives primitives2c.el engine.c main.c io.c \  SOURCES = Makefile primitives primitives2c.el engine.c main.c io.c \
Line 26  SOURCES = Makefile primitives primitives Line 30  SOURCES = Makefile primitives primitives
   
 RCS_FILES = $(SOURCES) INSTALL ToDo model high-level  RCS_FILES = $(SOURCES) INSTALL ToDo model high-level
   
 GEN = ansforth  GEN = gforth
   
 GEN_PRECIOUS = primitives.i prim_labels.i primitives.b prim_alias.4th aliases.fs  GEN_PRECIOUS = primitives.i prim_labels.i primitives.b prim_alias.4th aliases.fs
   
Line 34  OBJECTS = engine.o io.o main.o Line 38  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 prim_alias.4th kernal.32limg  FORTH_GEN = primitives.i prim_labels.i prim_alias.4th kernl32l.fi kernl32b.fi
   
 all:    ansforth aliases.fs  all:    gforth aliases.fs
   
 #from the gcc Makefile:   #from the gcc Makefile: 
 #"Deletion of files made during compilation.  #"Deletion of files made during compilation.
Line 60  realclean: distclean Line 64  realclean: distclean
   
 current:        $(RCS_FILES)  current:        $(RCS_FILES)
   
 ansforth:       $(OBJECTS) $(FORTH_GEN)  gforth: $(OBJECTS) $(FORTH_GEN)
                 -cp ansforth ansforth.old                  -cp gforth gforth~
                 $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@                  $(GCC) $(LDFLAGS) $(OBJECTS) $(LDLIBS) -o $@
   
 kernal.32limg:  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 \
                 environ.fs errore.fs kernal.fs extend.fs tools.fs toolsext.fs \                  errore.fs kernal.fs extend.fs tools.fs toolsext.fs \
                 $(FORTH_GEN)                  mach32l.fs $(FORTH_GEN)
                 -cp kernal.32limg kernal.32limg.old                  -cp kernl32l.fi kernl32l.fi~
                 ansforth "include main.fs"                  $(FORTH) -e 's" mach32l.fs" r/o open-file throw' main.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 \
                   mach32b.fs $(FORTH_GEN)
                   -cp kernl32b.fi kernl32b.fi~
                   $(FORTH) -e 's" mach32b.fs" r/o open-file throw' main.fs
   
 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 80  primitives.b: primitives Line 89  primitives.b: primitives
                 m4 primitives >$@                   m4 primitives >$@ 
   
 primitives.i :  primitives.b prims2x.fs  primitives.i :  primitives.b prims2x.fs
                 ansforth "include prims2x.fs s\" primitives.b\" ' output-c process-file bye" | awk -f from-cut-here >$@                  $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-c process-file bye" >$@
   
 prim_labels.i : primitives.b prims2x.fs  prim_labels.i : primitives.b prims2x.fs
                 ansforth "include prims2x.fs s\" primitives.b\" ' output-label process-file bye" | awk -f from-cut-here >$@                  $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-label process-file bye" >$@
   
 prim_alias.4th: primitives.b prims2x.fs  
                 ansforth "include prims2x.fs s\" primitives.b\" ' output-alias process-file bye" | awk -f from-cut-here >$@  
   
 aliases.fs:     prim_alias.4th  aliases.fs:     primitives.b prims2x.fs
                 cp prim_alias.4th $@                  $(FORTH) prims2x.fs -e "s\" primitives.b\" ' output-alias process-file bye" >$@
   
 #primitives.4th:        primitives.b primitives2c.el  #primitives.4th:        primitives.b primitives2c.el
 #               $(EMACS) -batch -load primitives2c.el -funcall make-forth  #               $(EMACS) -batch -load primitives2c.el -funcall make-forth
   
 #GNU make default rules  #GNU make default rules
 % ::            RCS/%,v  #% ::           RCS/%,v
                 co $@  #               co $@
 %.o :           %.c $(INCLUDES)  #%.o :          %.c $(INCLUDES)
                 $(CC) $(CFLAGS) -c $< -o $@  #               $(CC) $(CFLAGS) -c $< -o $@
   

Removed from v.1.4  
changed lines
  Added in v.1.14


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