diff options
author | Fred Fish <fnf@specifix.com> | 1996-03-17 00:53:34 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-03-17 00:53:34 +0000 |
commit | bfcf3112c421c372e123bbb789bab8ef98eb4e99 (patch) | |
tree | 9c91767b3b4913774bd706cf5eb0b7b94dbd60f2 /gdb/Makefile.in | |
parent | db210d08e4785afc90e450d43c189dc3a4bcc21a (diff) | |
download | gdb-bfcf3112c421c372e123bbb789bab8ef98eb4e99.zip gdb-bfcf3112c421c372e123bbb789bab8ef98eb4e99.tar.gz gdb-bfcf3112c421c372e123bbb789bab8ef98eb4e99.tar.bz2 |
Forgot during last checkin.
* config.h.in: New file.
* Makefile.in (distclean): Remove config.h and stamp-h during distclean.
(config.h, stamp-h): New targets to remake config.h when necessary.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index e00ef3f..23d7567 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -725,7 +725,7 @@ clean mostlyclean: # functionality described is if the distributed files are unmodified. distclean: clean @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do - rm -f nm.h tm.h xm.h config.status + rm -f nm.h tm.h xm.h config.status config.h stamp-h rm -f y.output yacc.acts yacc.tmp y.tab.h rm -f config.log config.cache rm -f Makefile @@ -756,6 +756,10 @@ subdir_do: force Makefile: Makefile.in config.status @frags@ $(SHELL) config.status +config.h: stamp-h ; @true +stamp-h: config.h.in config.status + CONFIG_HEADERS=config.h:config.h.in $(SHELL) config.status + config.status: configure $(SHELL) config.status --recheck |