blob: ecf23ae6e9ed92a428f0bfc832c832c51d033a94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
srcdir = @srcdir@
VPATH = @srcdir@
PROGS = builtins.exe 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 pr-8405.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
|