File:  [gforth] / gforth / BUILD-FROM-SCRATCH
Revision 1.28: download - view: text, annotated - select for diffs
Tue Jul 15 16:11:49 2008 UTC (15 years, 8 months ago) by anton
Branches: MAIN
CVS tags: v0-7-0, HEAD
updated copyright years
updated copyright-blacklist (added libltdl)
updated distributed files (don't distribute files without distribution terms)
added copyright to preforth.in and build-ec.in

    1: # Procedures to build gforth from the CVS sources
    2: 
    3: #use this with parameters and env variables like "configure"
    4: 
    5: #Copyright (C) 2000,2002,2003,2006,2007,2008 Free Software Foundation, Inc.
    6: 
    7: #This file is part of Gforth.
    8: 
    9: #Gforth is free software; you can redistribute it and/or
   10: #modify it under the terms of the GNU General Public License
   11: #as published by the Free Software Foundation, either version 3
   12: #of the License, or (at your option) any later version.
   13: 
   14: #This program is distributed in the hope that it will be useful,
   15: #but WITHOUT ANY WARRANTY; without even the implied warranty of
   16: #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
   17: #GNU General Public License for more details.
   18: 
   19: #You should have received a copy of the GNU General Public License
   20: #along with this program. If not, see http://www.gnu.org/licenses/.
   21: 
   22: 
   23: # created: 2may00jaw
   24: 
   25: # To build gforth from scratch you need autoconf, automake and a 
   26: # gforth-0.6.2
   27: 
   28: ./autogen.sh &&
   29: ./configure "$@" &&
   30: echo Running: make &&
   31: make &&
   32: make doc &&
   33: make more

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