blob: 32cb6c0f6fb5b17c79cd4f9763ca806127fdff28 (
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
|
# $OpenBSD: Makefile,v 1.3 2004/07/09 21:56:32 david Exp $
NOMAN=
NOPROG=
TESTDIR=${BSDSRCDIR}/gnu/lib/libiberty
regress:
@if ${RUNTEST} --help >/dev/null; then \
if ${RUNTEST} --version|grep 'Framework version is.*1.3$$' >/dev/null; then \
echo "Error: you must have a dejagnu more recent than 1.3"; \
echo "For instance: ${PORTSDIR}/devel/dejagnu."; \
else \
cd ${TESTDIR} && ${MAKE} -f Makefile.bsd-wrapper && \
${MAKE} check RUNTEST=${RUNTEST}; \
fi; \
else \
echo "Error: you must have a dejagnu more recent than 1.3 to run this test."; \
echo " You can install the package from the ftp site or recompile it"; \
echo " from the ports tree (${PORTSDIR}/devel/dejagnu)."; \
fi
.include <bsd.prog.mk>
PORTSDIR?=/usr/ports
|