Diff for /gforth/Makefile.in between versions 1.66 and 1.67

version 1.66, 1996/09/30 13:16:06 version 1.67, 1996/10/02 09:48:53
Line 37  INSTALL_DIR = $(srcdir)/install-sh -d Line 37  INSTALL_DIR = $(srcdir)/install-sh -d
 LN_S    = @LN_S@  LN_S    = @LN_S@
 GCC     = @CC@  GCC     = @CC@
 CC      = $(GCC)  CC      = $(GCC)
 FORTHPATH = $(libdir)/gforth/site-forth:$(datadir)/gforth/site-forth:$(libdir)/gforth/$(VERSION):$(datadir)/gforth/$(VERSION):.  PATHSEP = :
 FORTH   = ./gforth -p $(FORTHPATH):$(srcdir)  FORTHPATH = $(libdir)/gforth/site-forth$(PATHSEP)$(datadir)/gforth/site-forth$(PATHSEP)$(libdir)/gforth/$(VERSION)$(PATHSEP)$(datadir)/gforth/$(VERSION)$(PATHSEP).
 FORTHK  = $(FORTH) -p .:$(srcdir) -i ./kernel.fi  FORTH   = ./gforth -p $(FORTHPATH)$(PATHSEP)$(srcdir)
   FORTHK  = $(FORTH) -p .$(PATHSEP)$(srcdir) -i ./kernel.fi
 FORTHP  = ./gforth -i ./kernel.fi  FORTHP  = ./gforth -i ./kernel.fi
 STRIP   = strip  STRIP   = strip
 TEXI2DVI = texi2dvi  TEXI2DVI = texi2dvi
Line 286  uninstall: Line 287  uninstall:
                 -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)                  -$(RM) -rf $(libdir)/gforth/$(VERSION) $(datadir)/gforth/$(VERSION) $(bindir)/gforth-$(VERSION)
                 @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"                  @echo -e "Type\n$(RM) -rf $(bindir)/gforth $(mandir)/gforth.1 $(infodir)/gforth.info* $(datadir)/gforth $(libdir)/gforth\nto remove Gforth completely"
   
 check:          test  check test:     gforth gforth.fi
                 touch test  
   
 test:           gforth gforth.fi  
                 $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.fs -e bye                  $(FORTH) tester.fs coretest.fs postponetest.fs dbltest.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'
Line 360  kernl64l.fi: $(KERNLS) Line 358  kernl64l.fi: $(KERNLS)
 gforth.fi:      @kernel_fi@ gforth $(GFORTH_FI_SRC)  gforth.fi:      @kernel_fi@ gforth $(GFORTH_FI_SRC)
                 $(FORTHK) startup.fs -e "savesystem gforth.fi bye"                  $(FORTHK) startup.fs -e "savesystem gforth.fi bye"
   
   #TAGS is a GNU standard target
   TAGS:           gforth.TAGS
                   $(CP) gforth.TAGS $@
   
 gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS  gforth.TAGS:    @kernel_fi@ gforth $(GFORTH_FI_SRC) primitives.TAGS
                 $(FORTHK) etags.fs startup.fs -e bye                  $(FORTHK) etags.fs startup.fs -e bye
                 cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS                  cat TAGS primitives.TAGS kernel.TAGS >gforth.TAGS
                   rm TAGS
   
 engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h  engine.s:       engine.c primitives.i prim_labels.i machine.h threading.h $(INCLUDES) config.h
                 $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c                  $(GCC) $(CFLAGS) $(ENGINE_FLAGS) -S $(srcdir)/engine.c

Removed from v.1.66  
changed lines
  Added in v.1.67


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