
For now, printing of Sun RPC requests is disabled because we do not yet have the RPC header files. This should affect basically noone, as we do not have any RPC-based programs yet, for the same reason. Change-Id: Ie7818faaaacdc104d8b2c37a68866b4ce18247d6
23 lines
614 B
Plaintext
23 lines
614 B
Plaintext
#
|
|
# Auto-regenerate configure script or Makefile when things change.
|
|
# From autoconf.info . Works best with GNU Make.
|
|
#
|
|
${srcdir}/configure: configure.in 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.in 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
|