diff options
author | Jeff Holcomb <jeffh@redhat.com> | 1998-05-12 20:53:08 +0000 |
---|---|---|
committer | Jeff Holcomb <jeffh@redhat.com> | 1998-05-12 20:53:08 +0000 |
commit | cc1ad6456832c3c8ac31fe6a60738c2830363fb9 (patch) | |
tree | a795cea5cc3311492d3338418f0e2be8d1aada68 /gdb/Makefile.in | |
parent | 32c2be763313cea5e3bf448f2de2bf29be09d5c9 (diff) | |
download | gdb-cc1ad6456832c3c8ac31fe6a60738c2830363fb9.zip gdb-cc1ad6456832c3c8ac31fe6a60738c2830363fb9.tar.gz gdb-cc1ad6456832c3c8ac31fe6a60738c2830363fb9.tar.bz2 |
Tue May 12 13:29:20 1998 Jeff Holcomb <jeffh@cygnus.com>
* Makefile.in (install-only): Add images/icons.txt and
images2/icons.txt to files that need to be installed.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 28 |
1 files changed, 9 insertions, 19 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 819dd3a..ef43888 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -605,7 +605,7 @@ install-only: $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl/help \ $(datadir)/gdbtcl/help/images; \ cd $(srcdir)/gdbtcl2 ; \ - for i in *.tcl images/*.gif images2/*.gif tclIndex help/*.html help/index.toc help/images/*.gif; \ + for i in *.tcl images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html help/index.toc help/images/*.gif; \ do \ $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \ done ; @@ -726,22 +726,6 @@ gdb1$(EXEEXT): gdb$(EXEEXT) rm -f gdb1$(EXEEXT) cp gdb$(EXEEXT) gdb1$(EXEEXT) -### fixme - this can't be right. -# This checks the configure.in file versus the config/ directory. -config-check: config-check-hosts config-check-targets -config-check-hosts: - grep gdb_host= $(srcdir)/configure.in | \ - sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o - (cd $(srcdir)/config; ls *.mh) >HOSTdir.o - diff -u HOSTconf.o HOSTdir.o - -### fixme - nor can this. -config-check-targets: - grep gdb_target= $(srcdir)/configure.in | \ - sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o - (cd $(srcdir)/config; ls *.mt) >TARGdir.o - diff -u HOSTconf.o HOSTdir.o - # FIXME. These are not generated by "make depend" because they only are there # for some machines. # But these rules don't do what we want; we want to hack the foo.o: tm.h @@ -799,15 +783,21 @@ distclean: clean rm -f config.log config.cache rm -f Makefile -maintainer-clean realclean: distclean clean +maintainer-clean: local-maintainer-clean do-maintainer-clean distclean +realclean: maintainer-clean + +local-maintainer-clean: @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." - @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" subdir_do rm -f c-exp.tab.c jv-exp.tab.c f-exp.tab.c m2-exp.tab.c rm -f TAGS $(INFOFILES) rm -f $(YYFILES) rm -f nm.h tm.h xm.h config.status +do-maintainer-clean: + @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \ + subdir_do + diststuff: $(DISTSTUFF) cd doc; $(MAKE) $(MFLAGS) all-doc |