I have a project with autotools: automake, autoconf.
I want to prohibit make
from remaking files configure
, Makefile.in
, etc; just to do compile job.
Some of files are edited by hand, and I know that I should not to do this. (Or the project was updated from CVS with all generated files stored in CVS). But at the moment I have no correct version autotools installed.
What must be modification times of this files (which must be newer/older):
aclocal.m4
configure.in
confdb/ax_prefix_config_h.m4
Makefile.am
Makefile.in
Makefile
configure
config.status
Or: what sequence of touch
commands must I do to achieve my goal?
configure
manually and also I editconfigure.in
. But I have no needed versions of autotools, so edits ofconfigure
was like as it is regenerated with right tool. I want not to use different autotools because the project is under cvs and it is stored with all scripts (configure, *.m4, *.in) created. – Godgiven