summaryrefslogtreecommitdiff
path: root/Makefile-devel-adds
blob: fea63bbce3a7b81ed0f6f96f30e877a9a972fe43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Auto-regenerate configure script or Makefile when things change.
# From autoconf.info .  Works best with GNU Make.
#
${srcdir}/configure: configure.ac aclocal.m4
	cd ${srcdir} && autoconf

# autoheader might not change config.h.in, so touch a stamp file.
${srcdir}/config.h.in: ${srcdir}/stamp-h.in
${srcdir}/stamp-h.in: configure.ac aclocal.m4
	cd ${srcdir} && autoheader
	echo timestamp > ${srcdir}/stamp-h.in

config.h: stamp-h
stamp-h: ${srcdir}/config.h.in config.status
	./config.status

Makefile: Makefile.in config.status
	./config.status

config.status: ${srcdir}/configure
	./config.status --recheck