autotools: force make not to rebuild configure/Makefile

后端 未结 3 1793
不思量自难忘°
不思量自难忘° 2020-12-31 18:24

I have a project with autotools: automake, autoconf.

I want to prohibit make from remaking files configure, Makefile.in, etc;

3条回答
  •  不思量自难忘°
    2020-12-31 19:13

    touch confdb/*.m4
    touch configure.in
    touch *.m4
    touch *.am
    touch Makefile.in */Makefile.in
    touch *config.h.in */*config.h.in
    touch configure
    touch config.status
    touch config.h
    touch Makefile
    

    Problems with automake & cvs are described here http://www.gnu.org/s/hello/manual/automake/CVS.html

提交回复
热议问题