简体   繁体   中英

compiling various header files in c using autotools in arch linux

我想知道如何在Arch Linux中使用自动工具通过一个命令来编译许多头文件

Header files are not for compilation. They do not (or should not) define an implementation.

For general automake help, I would suggest the Automake manual

Generally you don't compile header files ( .h ), but instead the .c files.

If you just have some source code package that uses autotools and that you want to compile the usual command would be:

./configure && make

If you also want to install the package an your system, follow that up by make install .

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