Diff for /gforth/Makefile.in between versions 1.465 and 1.471

version 1.465, 2011/11/17 22:29:17 version 1.471, 2012/03/19 21:59:35
Line 1 Line 1
 #Makefile for Gforth  #Makefile for Gforth
   
 #Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009,2010 Free Software Foundation, Inc.  #Copyright (C) 1995,1996,1997,1998,2000,2003,2004,2005,2006,2007,2008,2009,2010,2011 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
Line 49  EC = @EC@ Line 49  EC = @EC@
   
 # ------------  Install Directories  # ------------  Install Directories
   
   package =
 VPATH = @srcdir@  VPATH = @srcdir@
 prefix = @prefix@  prefix = $(package)@prefix@
 exec_prefix = @exec_prefix@  exec_prefix = @exec_prefix@
 srcdir = @srcdir@  srcdir = @srcdir@
 bindir = @bindir@  bindir = @bindir@
Line 263  GFORTH_FI_SRC2=\ Line 264  GFORTH_FI_SRC2=\
         arch/arm/testdisasm.fs arch/arm/testdisasm.out arch/arm/Makefile \          arch/arm/testdisasm.fs arch/arm/testdisasm.out arch/arm/Makefile \
         arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \          arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \
         arch/mips/testasm.fs arch/mips/testdisasm.fs \          arch/mips/testasm.fs arch/mips/testdisasm.fs \
         arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs          arch/power/asm.fs arch/power/disasm.fs arch/power/inst.fs \
           arch/lm32/asm.fs arch/lm32/testasm.fs
   
 # execlude envos.fs into list of distributed sources  # execlude envos.fs into list of distributed sources
 GFORTH_FI_DIST_SRC = \  GFORTH_FI_DIST_SRC = \
Line 275  GFORTH_FI_SRC = \ Line 277  GFORTH_FI_SRC = \
         envos.fs \          envos.fs \
         $(GFORTH_FI_SRC2)          $(GFORTH_FI_SRC2)
   
 LIBCC_SRC = cstr.fs unix/socket.fs  LIBCC_SRC = cstr.fs unix/socket.fs unix/pthread.fs
   
 LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)  LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)
   
Line 291  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST Line 293  FORTH_SRC = $(KERN_SRC) $(GFORTH_FI_DIST
         make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \          make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \
         other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \          other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
         regexp.fs sokoban.fs string.fs table.fs tags.fs \          regexp.fs sokoban.fs string.fs table.fs tags.fs \
         tt.fs \          tt.fs quotations.fs \
         unbuffer.fs wordsets.fs xwords.fs \          unbuffer.fs wordsets.fs xwords.fs \
         test/tester.fs test/ttester.fs \          test/tester.fs test/ttester.fs \
         test/coretest.fs test/postpone.fs test/dbltest.fs \          test/coretest.fs test/postpone.fs test/dbltest.fs \
Line 383  ARCHS = \ Line 385  ARCHS = \
         arch/r8c/lauflicht.fs \          arch/r8c/lauflicht.fs \
         arch/r8c/tasker.fs \          arch/r8c/tasker.fs \
         arch/r8c/terminal.fs \          arch/r8c/terminal.fs \
         arch/sharc/unistd.h          arch/sharc/unistd.h \
           arch/lm32/mach.fs \
           arch/lm32/mach.sh \
           arch/lm32/prim.fs \
           arch/lm32/Makefile \
           arch/lm32/testasm.disas-ok
   
 #not included in distribution until distribution terms are included:  #not included in distribution until distribution terms are included:
 ARCHS_NO_DIST = \  ARCHS_NO_DIST = \
Line 600  bindist: Makedist FORCE Line 607  bindist: Makedist FORCE
 binonlydist:    Makedist FORCE  binonlydist:    Makedist FORCE
                 $(MAKE) -f Makedist d$@                  $(MAKE) -f Makedist d$@
   
   debdist:        Makedist FORCE
                   $(MAKE) -f Makedist d$@
   
 #HPUX make breaks the cycle differently when the dates are equal, so  #HPUX make breaks the cycle differently when the dates are equal, so
 # touch some of the files if it acts up  # touch some of the files if it acts up
 hpux-workaround:  hpux-workaround:
Line 906  tags:  gforth.tags Line 916  tags:  gforth.tags
                 $(CP) gforth.tags $@                  $(CP) gforth.tags $@
   
 install.TAGS:   TAGS install-tags.fs  install.TAGS:   TAGS install-tags.fs
                 sed 's;^\$(srcdir)/;;' TAGS|./gforth -e 's" '$(datadir)/gforth/$(VERSION)/'"' $(srcdir)/install-tags.fs -e bye >install.TAGS                  sed 's;^\$(srcdir)/;;' TAGS|$(PREFORTH) -e 's" '$(datadir)/gforth/$(VERSION)/'"' $(srcdir)/install-tags.fs -e bye >install.TAGS
   
 gforth.TAGS:    @kernel_fi@ gforth$(EC)$(EXE) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS  gforth.TAGS:    @kernel_fi@ gforth$(EC)$(EXE) $(GFORTH_FI_SRC) prim.TAGS kernel.TAGS
                 $(FORTHK) etags.fs except.fs startup.fs -e bye                  $(FORTHK) etags.fs except.fs startup.fs -e bye

Removed from v.1.465  
changed lines
  Added in v.1.471


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