1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Install instructions for gerbv
GNU Electronic Design Automation
------------------------------------------------------------------------------
$Id: INSTALL,v 1.2 2001/09/03 19:40:33 spetm Exp $
Installation instructions
The build system of gerbv is based on GNU Autoconf.
Simple build instructions would (currently) be:
% ./configure
% make
% make install
To recreate the configuration files you have to run:
% aclocal
% autoheader
% autoconf
% automake --copy --add-missing
------------------------------------------------------------------------------
In order to build gschem you must install the following packages first:
* GLIB 1.2.x
* GTK+ 1.2.x
* Guile 1.4
If you don't have Guile installed and have no intention of running
gerbv in batch mode you can simply omit Guile (and therefore batch
mode) at configure time:
./configure --disable-batch
If your make program is called gmake (for instance on Sun platforms) you
can run this by typing:
% MAKE=gmake ./configure
% gmake
% gmake install
|