blob: cc0b5752f850066595fa45347e0cc6f869b1476e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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
|