diff options
Diffstat (limited to 'gdb/testsuite/gdb.hp/Makefile.in')
-rw-r--r-- | gdb/testsuite/gdb.hp/Makefile.in | 41 |
1 files changed, 30 insertions, 11 deletions
diff --git a/gdb/testsuite/gdb.hp/Makefile.in b/gdb/testsuite/gdb.hp/Makefile.in index d65fc75e222..2a1a9df175b 100644 --- a/gdb/testsuite/gdb.hp/Makefile.in +++ b/gdb/testsuite/gdb.hp/Makefile.in @@ -1,25 +1,44 @@ VPATH = @srcdir@ srcdir = @srcdir@ -PROGS = ambiguous ctti-add exception gen-so-thresh namespace \ - optimize pxdb so-thresh templ-hp watch-hp xdb +SUBDIRS = @subdirs@ -MISCELLANEOUS = \ - lib00-so-thresh.c lib00-so-thresh.sl \ - lib01-so-thresh.c lib01-so-thresh.sl \ - lib02-so-thresh.c lib02-so-thresh.sl \ - so-thresh.c so-thresh.linkopts - -all: +all: @echo "Nothing to be done for all..." -#### host, target, and site specific Makefile frags come in here. +info: +install-info: +dvi: +install: +uninstall: force +installcheck: +check: clean mostlyclean: - -rm -f *.ci *.o $(OBJS) $(PROGS) $(MISCELLANEOUS) *~ core + -rm -f *~ core *.o + if [ x"${SUBDIRS}" != x ] ; then \ + for dir in ${SUBDIRS}; \ + do \ + echo "$$dir:"; \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) clean); \ + fi; \ + done ; \ + else true; fi distclean maintainer-clean realclean: clean -rm -f Makefile config.status config.log + -rm -f *-init.exp + -rm -fr *.log summary detail *.plog *.sum *.psum site.* + if [ x"${SUBDIRS}" != x ] ; then \ + for dir in ${SUBDIRS}; \ + do \ + echo "$$dir:"; \ + if [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) distclean); \ + fi; \ + done ; \ + else true; fi Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in $(SHELL) ./config.status --recheck |