简体   繁体   中英

Makefile.in without Makefile.am in GCC?

I'm reading GCC's source code and have some questions. It's obvious that GCC is build with autotools. But I couldn't find the Makefile.am files required by automake. Is GCC's Makefile.in files written by hand? And if they are written by hand, where can I find the documents describing the syntax of a Makefile.in?

A similar question: Makefile.in without Makefile.am in projects

Makefile.am is a later addition to Autotools family and not all projects use it. GCC in particular does not use it. The top-level Makefile.in is generated from Makefile.tpl using autogen (see here for details). Other Makefile.in 's are written by hand according to Autoconf rules .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM