|
Under Unix, it is possible to build Edacious outside of the source directory.
Developers will often prefer this method, since it results in a much faster
build, it avoids cluttering the source directories with object files and
it also facilitates testing on multiple machines using network filesystems.
To perform a concurrent build, create a build directory anywhere on your
system. When this is an option, a memory filesystem is an excellent
choice.
$ mkdir /tmp/mybuild
$ cd /tmp/mybuild
Then execute the configure script with the --srcdir option specifying
the location of the source tree:
$ ~/edacious-sources/configure --srcdir=$HOME/edacious-sources ...
Finally, execute make in the build directory:
$ cd /tmp/mybuild
$ make depend && make
# make install
|