blob: f8c0dc6792a820f02d0464e8febc73ab1e26bb38 (
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
|
srcdir = @srcdir@
VPATH = @srcdir@
PROGS = callch.exe chillvars.exe misc.exe result.exe string.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
|