make
From Gentoo Wiki
Make is a tool to build software from source code (which usually includes compiling). makefiles contain the instructions to build packages, and these are sometimes generated with Autotools.
Invocation
The emake function should be used to call make.
src_compile() {
java-pkg-simple_src_compile
pushd src/native/unix || die
./configure
emake AR="$(tc-getAR)"
popd
}
See also
- Autotools — a build system often used for open source projects.
- Build automation — software that automates the compilation, clean up, and installation stages of the software creation process.
External resources
- man 5 ebuild - See the section emake [make options]