Reputation: 11
i would like to know how can i compile a number of header files by just one command using autotools in arch linux
Upvotes: 0
Views: 601
Reputation: 229593
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
.
Upvotes: 1
Reputation: 33177
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
Upvotes: 1