blob: fa6eed9ad388fd038ed218110f2e76c0dcb683cc (
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
32
33
34
35
36
37
38
39
40
41
42
|
# $OpenBSD: Makefile,v 1.8 2003/12/02 09:02:02 otto Exp $
BC=bc
REGRESS_TARGETS=t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 t13 t14 t15 t16 t17
# .in: input file
# .out: desired result
# t1: bc.library
# t2: while loop
# t3: for loop
# t4: deeply nested while loop
# t5: function definition and call
# t6: empty if statement
# t7: assignment ops
# t8: continue ops
# t9: more continue
# t10: for with empty E's
# t11: if else
# t12: print
# t13: alternive forms of define and return
# t14: compare
# t15: boolean and
# t16: boolean or
# t17: long var names
all: clean ${REGRESS_TARGET}
.SUFFIXES: .in
.in:
@echo ${*}
@${BC} -d < ${.CURDIR}/${*}.in > ${*}.log
@cmp -s ${.CURDIR}/${*}.out ${*}.log || \
(echo "XXX ${*} failed" && false)
# Clean all files generated
clean:
rm -f *.log
.include <bsd.regress.mk>
|