1d41d745ca
* Makefile.in: Make more clean. * gdb.ada/Makefile.in: Ditto. * gdb.arch/Makefile.in: Ditto. * gdb.asm/Makefile.in: Ditto. * gdb.base/Makefile.in: Ditto. * gdb.cp/Makefile.in: Ditto. * gdb.dwarf2/Makefile.in: Ditto. * gdb.java/Makefile.in: Ditto. * gdb.mi/Makefile.in: Ditto. * gdb.modula2/Makefile.in: Ditto. * gdb.python/Makefile.in: Ditto. * gdb.server/Makefile.in: Ditto. * gdb.stabs/Makefile.in: Ditto. * gdb.threads/Makefile.in: Ditto. * gdb.trace/Makefile.in: Ditto.
21 lines
573 B
Makefile
21 lines
573 B
Makefile
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
all info install-info dvi install uninstall installcheck check:
|
|
@echo "Nothing to be done for $@..."
|
|
|
|
.SUFFIXES: .java .class .o .exe .exp .check
|
|
|
|
# Do 'make javamisc.check' to run just the javamisc.exp test.
|
|
|
|
.exp.check:
|
|
rootme=`pwd`/; export rootme; \
|
|
cd .. ; \
|
|
$(MAKE) just-check RUNTESTFLAGS="${RUNTESTFLAGS} $*.exp" \
|
|
EXPECT=${EXPECT}
|
|
|
|
clean mostlyclean:
|
|
-rm -f *.o ${OBJS} *.class *.exe *~ core jmain jmisc jnpe jprint
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
-rm -f Makefile config.status config.log gdb.log gdb.sum
|