da2cfeb098
New (extensive) test cases. * chexp.exp: Fix relations to return TRUE or FALSE.
31 lines
831 B
Makefile
31 lines
831 B
Makefile
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
PROGS = callch.exe chillvars.exe misc.exe result.exe string.exe \
|
|
tests1.exe tests2.exe tuples.exe \
|
|
pr-4975.exe pr-5016.exe pr-5020.exe pr-5022.exe pr-5646.exe \
|
|
pr-5984.exe pr-6292.exe pr-6632.exe pr-8136.exe
|
|
|
|
all:
|
|
@echo "Nothing to be done for all..."
|
|
|
|
#### host, target, and site specific Makefile frags come in here.
|
|
|
|
.SUFFIXES: .ch .o .exe .exp .check
|
|
|
|
# Do 'make chillvars.check' to run just the chillvars.{ch,exp} test.
|
|
|
|
.exp.check:
|
|
rootme=`pwd`/; export rootme; \
|
|
cd .. ; \
|
|
$(MAKE) just-check RUNTESTFLAGS="${RUNTESTFLAGS} $*.exp" \
|
|
EXPECT=${EXPECT}
|
|
|
|
clean mostlyclean:
|
|
-rm -f *.o $OBJS} ${PROGS} *~ core
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
-rm -f Makefile config.status
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure.in
|
|
$(SHELL) ./config.status --recheck
|