snippetbashTip
automake — Automated Makefile generation for software projects using GNU standards. More information: <https://
Viewed 0 times
automakecommandmakefilegenerationsoftwarecliforautomated
Problem
How to use the
automake command: Automated Makefile generation for software projects using GNU standards. More information: <https://www.gnu.org/software/automake/manual/automake.html#automake-Invocation>.Solution
automake — Automated Makefile generation for software projects using GNU standards. More information: <https://www.gnu.org/software/automake/manual/automake.html#automake-Invocation>.Run automake to regenerate Makefiles after editing
Makefile.am:automakeGenerate
Makefile.in for a non-GNU project (foreign mode):automake --foreignAdd verbose output for debugging:
automake {{[-v|--verbose]}}Add missing standard files (INSTALL, COPYING, depcomp, etc.):
automake {{[-a|--add-missing]}}Display help:
automake --helpCode Snippets
Run automake to regenerate Makefiles after editing `Makefile.am`
automakeGenerate `Makefile.in` for a non-GNU project (foreign mode)
automake --foreignAdd verbose output for debugging
automake {{[-v|--verbose]}}Add missing standard files (INSTALL, COPYING, depcomp, etc.)
automake {{[-a|--add-missing]}}Display help
automake --helpContext
tldr-pages: common/automake
Revisions (0)
No revisions yet.