diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-05-15 17:11:59 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-05-15 17:11:59 +0000 |
commit | 4e8d927dded819785e749c571f5b6a495a425432 (patch) | |
tree | 34afab207a6996b86c2e09ba223e1a3634175256 /gdb/Makefile.in | |
parent | 64b607e61b2efa2517a6306df3cf3722175fe9ef (diff) | |
download | gdb-4e8d927dded819785e749c571f5b6a495a425432.zip gdb-4e8d927dded819785e749c571f5b6a495a425432.tar.gz gdb-4e8d927dded819785e749c571f5b6a495a425432.tar.bz2 |
* configure.ac: Use GCC_HEADER_STDINT.
* acinclude.m4: Include stdint.m4.
* Makefile.in (gdb_stdint_h): Define.
(distclean): Remove gdb_stdint.h.
(Makefile, stamp-h): Update rules to generate only the correct
files.
(gdb_stdint.h, stamp-int): New rules.
* config.in, configure: Regenerated.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ab25148..44d7476 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -613,6 +613,7 @@ hashtab_h = $(INCLUDE_DIR)/hashtab.h config_h = config.h exc_request_U_h = exc_request_U.h exc_request_S_h = exc_request_S.h +gdb_stdint_h = gdb_stdint.h msg_reply_S_h = msg_reply_S.h msg_U_h = msg_U.h notify_S_h = notify_S.h @@ -1280,6 +1281,7 @@ distclean: clean rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h rm -f gdbserver/Makefile gdbserver/config.cache rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit + rm -f gdb_stdint.h rm -f y.output yacc.acts yacc.tmp y.tab.h rm -f config.log config.cache rm -f Makefile @@ -1317,11 +1319,28 @@ subdir_do: force done Makefile: Makefile.in config.status @frags@ - $(SHELL) config.status + # Regenerate the Makefile and the tm.h / nm.h links. + CONFIG_FILES=Makefile \ + CONFIG_COMMANDS= \ + CONFIG_HEADERS= \ + $(SHELL) config.status config.h: stamp-h ; @true stamp-h: config.in config.status - CONFIG_HEADERS=config.h:config.in $(SHELL) config.status + CONFIG_HEADERS=config.h:config.in \ + CONFIG_COMMANDS=default \ + CONFIG_FILES= \ + CONFIG_LINKS= \ + $(SHELL) config.status + +gdb_stdint.h: stamp-int ; @true +stamp-int: config.status + CONFIG_COMMANDS=gdb_stdint.h \ + CONFIG_FILES= \ + CONFIG_HEADERS= \ + CONFIG_LINKS= \ + $(SHELL) config.status + echo stamp > stamp-int config.status: configure configure.tgt configure.host $(SHELL) config.status --recheck |