1srcdir = @srcdir@ 2VPATH = @srcdir@ 3 4all info install-info dvi install uninstall installcheck check: 5 @echo "Nothing to be done for $@..." 6 7.SUFFIXES: .java .class .o .exe .exp .check 8 9# Do 'make javamisc.check' to run just the javamisc.exp test. 10 11.exp.check: 12 rootme=`pwd`/; export rootme; \ 13 cd .. ; \ 14 $(MAKE) just-check RUNTESTFLAGS="${RUNTESTFLAGS} $*.exp" \ 15 EXPECT=${EXPECT} 16 17clean mostlyclean: 18 -rm -f *.o ${OBJS} *.class *.exe *~ core 19 20distclean maintainer-clean realclean: clean 21 -rm -f Makefile config.status config.log 22