Makefile-devel-adds 614 B

12345678910111213141516171819202122
  1. #
  2. # Auto-regenerate configure script or Makefile when things change.
  3. # From autoconf.info . Works best with GNU Make.
  4. #
  5. ${srcdir}/configure: configure.in aclocal.m4
  6. cd ${srcdir} && autoconf
  7. # autoheader might not change config.h.in, so touch a stamp file.
  8. ${srcdir}/config.h.in: ${srcdir}/stamp-h.in
  9. ${srcdir}/stamp-h.in: configure.in aclocal.m4
  10. cd ${srcdir} && autoheader
  11. echo timestamp > ${srcdir}/stamp-h.in
  12. config.h: stamp-h
  13. stamp-h: ${srcdir}/config.h.in config.status
  14. ./config.status
  15. Makefile: Makefile.in config.status
  16. ./config.status
  17. config.status: ${srcdir}/configure
  18. ./config.status --recheck