Makefile revision 92686
1#
2# (C)opyright 1993-1996 by Darren Reed.
3#
4# Redistribution and use in source and binary forms are permitted
5# provided that this notice is preserved and due credit is given
6# to the original author and the contributors.
7#
8BINDEST=/usr/local/bin
9SBINDEST=/sbin
10MANDIR=/usr/share/man
11
12tests: first 0 ftests ptests ntests nitests logtests
13
14first:
15	-mkdir -p results
16
17# Filtering tests
18ftests: f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 f13 f14 f15 f16
19
20# Rule parsing tests
21ptests: i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11
22
23ntests: n1 n2 n3 n4 n5 n6 n7
24
25nitests: ni1 ni2
26
27logtests: l1
28
290:
30	@(cd ..; make ipftest; )
31
32f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f14:
33	@/bin/sh ./dotest $@
34
35f12 f13:
36	@/bin/sh ./hextest $@
37
38f15 f16:
39	@/bin/sh ./mtest $@
40
41i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11:
42	@/bin/sh ./itest $@
43
44n1 n2 n3 n4 n5 n6 n7:
45	@/bin/sh ./nattest $@
46
47ni1 ni2:
48	@/bin/sh ./natipftest $@
49
50l1:
51	@/bin/sh ./logtest $@
52
53clean:
54	/bin/rm -f f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f13 f12 f14 f15 f16
55	/bin/rm -f i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11
56	/bin/rm -f n1 n2 n3 n4 n5 n6 n7
57	/bin/rm -f ni1 ni2
58	/bin/rm -f l1
59	/bin/rm -f results/*
60