Annotation of gforth/BUILD-FROM-SCRATCH, revision 1.28

1.1       jwilke      1: # Procedures to build gforth from the CVS sources
1.3       anton       2: 
1.11      anton       3: #use this with parameters and env variables like "configure"
                      4: 
1.28    ! anton       5: #Copyright (C) 2000,2002,2003,2006,2007,2008 Free Software Foundation, Inc.
1.3       anton       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
1.22      anton      11: #as published by the Free Software Foundation, either version 3
1.3       anton      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
1.22      anton      20: #along with this program. If not, see http://www.gnu.org/licenses/.
1.3       anton      21: 
                     22: 
1.1       jwilke     23: # created: 2may00jaw
                     24: 
1.6       jwilke     25: # To build gforth from scratch you need autoconf, automake and a 
1.17      anton      26: # gforth-0.6.2
1.1       jwilke     27: 
1.27      anton      28: ./autogen.sh &&
1.19      anton      29: ./configure "$@" &&
1.23      pazsan     30: echo Running: make &&
                     31: make &&
                     32: make doc &&
                     33: make more

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