Which file would I need to edit to add additional files to an existing make system? There are three files:
Makefile.am Makefile.in Makefile
They all contain information about the sources that are being used. I assume it is the Makefile.am, becaue in Makefile.in it says "generated by automake". My question is though: How can I tell the system to regenerate Makefiles with my changes, but without changing anything else?
Makefile.am
. Automake will read that and generateMakefile.in
, configure will read that and generateMakefile
, Make will read that and build things. I'll add theautomake
tag. – Beta