2002-04-09 Daniel Jacobowitz <drow@mvista.com>

* gdbserver/Makefile.in: Add stamp-h target.
        * gdbserver/configure.in: Create stamp-h.
        * gdbserver/configure: Regenerated.
This commit is contained in:
Daniel Jacobowitz 2002-04-09 21:25:29 +00:00
parent ce3a066d93
commit c3a3ccc760
4 changed files with 18 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-04-09 Daniel Jacobowitz <drow@mvista.com>
* gdbserver/Makefile.in: Add stamp-h target.
* gdbserver/configure.in: Create stamp-h.
* gdbserver/configure: Regenerated.
2002-04-09 Daniel Jacobowitz <drow@mvista.com>
* gdbserver/inferiors.c: New file.

View File

@ -199,7 +199,8 @@ maintainer-clean realclean: clean
STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
config.h: config.in config.status
config.h: stamp-h ; @true
stamp-h: config.in config.status
CONFIG_FILES="" $(SHELL) ./config.status
Makefile: Makefile.in config.status

View File

@ -1593,6 +1593,10 @@ cat >> $CONFIG_STATUS <<EOF
EOF
cat >> $CONFIG_STATUS <<\EOF
case x$CONFIG_HEADERS in
xconfig.h:config.in)
echo > stamp-h ;;
esac
exit 0
EOF

View File

@ -66,4 +66,9 @@ GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj"
AC_SUBST(GDBSERVER_DEPFILES)
AC_OUTPUT(Makefile)
AC_OUTPUT(Makefile,
[case x$CONFIG_HEADERS in
xconfig.h:config.in)
echo > stamp-h ;;
esac
])