I'm trying to write a program that builds with autotools, however I have run into a problem when I try to make it. Automake seems to rely on a file called depcomp. I was wondering what this file does, and what I should fill it with/how I should make it.
Autotools configurationThis file is used by autoconf to create the configure shell script that users run before building. The file must contain, at the very least, the AC_INIT and AC_OUTPUT M4 macros.
Autoconf essentially runs the preprocessor on your script to produce a portable shell script which will perform all the requisite tests, produce handy log files, preprocess template files, for example to generate Makefile from Makefile.in and and take a standard set of command line arguments.
depcomp
is installed by Automake itself when you run automake --install
(or better, when you run autoreconf -vfi
). It is used to keep track of the dependencies as a side-effect of compilation.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With