Makefile revision 80486
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
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
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
250:
26	@(cd ..; make ipftest; )
27
28f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f14:
29	@/bin/sh ./dotest $@
30
31f12 f13:
32	@/bin/sh ./hextest $@
33
34i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11:
35	@/bin/sh ./itest $@
36
37n1 n2 n3 n4 n5 n6 n7:
38	@/bin/sh ./nattest $@
39
40clean:
41	/bin/rm -f f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f13 f12 f14 results/*
42	/bin/rm -f i1 i2 i3 i4 i5 i6 i7 i8 i9 i10 i11
43	/bin/rm -f n1 n2 n3 n4 n5 n6 n7
44