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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
GNU Zile build and installation instructions
--------------------------------------------
Copyright (c) 2004, 2005, 2006, 2007, 2008 Reuben Thomas.
Copyright (c) 2008 Free Software Foundation, Inc.
Copying and distribution of this file, with or without
modification, are permitted in any medium without royalty
provided the copyright notice and this notice are preserved.
To build and install Zile:
[Only if you're compiling the CVS sources, first make sure you have
the GNU autotools installed (automake >= 1.9, autoconf >= 2.59) and
run
./autogen.sh
]
1) Run configure:
./configure
2) Compile the sources:
make
3) To install Zile, run
make install
By default, Zile is installed under /usr/local; this can be changed
by using the --prefix argument to configure, e.g.
./configure --prefix=$HOME/zile
You can also run it in place (src/zile), but if you do that the
built-in documentation won't be available.
Options
-------
If you are debugging the editor, you can enable the debugging code:
--enable-debug include debugging code and assertions
For other configure options, run
./configure --help
Automated releases
------------------
To make a release automatically, you need woger, from
http://rrt.sc3d.org/Software/woger
|