↧
Answer by Douglas Leeder for Store GNU make generated files elsewhere
As Kristof already pointed out, GNU autotools inherently support out out-of-tree builds at the configure level.So you can have the Makefile and built binaries out of the source tree trivially.To get...
View ArticleAnswer by Kristof Provost for Store GNU make generated files elsewhere
The Makefile must support this feature.I think the autoconf generated makefiles all support the following use:mkdir ../buildcd ../build../configure --prefix=/usrmakemake install(It's certainly...
View ArticleStore GNU make generated files elsewhere
How can I store GNU make & configure files elsewhere? I have a project I am working on that I get compiled using:./configure --prefix=/usr && make && su -c 'make install'The thing...
View Article