Automake requires that the following "standard" files exist in the source directory of my project:
Obviously, none of these files are necessary for a program to build, but Automake refuses to run without them. I know about the --add-missing
flag that will cause boilerplate files to be generated, but I would rather not have the files at all.
Is there a way to force Automake to run and ignore the missing files without generating them?
Automake is the component you'll use to create the Makefile, a template that can then be populated with autoconf . Automake does so using variables and primaries. An example of such a primary is bin_PROGRAMS = helloworld , where the primary is the _PROGRAMS suffix.
Creating a Makefile.in. To create all the Makefile.in s for a package, run the automake program in the top level directory, with no arguments. automake will automatically find each appropriate Makefile.am (by scanning configure.in ; see configure) and generate the corresponding Makefile.in .
Use the foreign
option. Look up "strictness" in the documentation.
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