blob: 3de5c87bec40c3673a03710d8ccc924a32eeac20 (
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
|
# $OpenBSD: Makefile,v 1.8 2002/01/04 22:40:04 art Exp $
#
# To run full regression tests you just need two steps:
# 1. make depend
# 2. make regress
#
# A normal "make" is not necessary and will simply do the same thing
# as "regress" (possibly with more bugs). This allows us to include
# compilation as a part of the regression test.
#
# To get a log of test results set the REGRESSLOG make variable to
# a log file, use an absolute path.
# To skip the really slow tests, set the REGRESSSKIPSLOW variable.
# missing: libexec bin usr.sbin share games gnu
SUBDIR+= etc bin include lib sbin sys share usr.bin
regress: _SUBDIRUSE
install:
.include <bsd.subdir.mk>
|