diff options
author | 2002-02-22 23:33:59 +0000 | |
---|---|---|
committer | 2002-02-22 23:33:59 +0000 | |
commit | e36ebd4a71ce912d55556bb384951dc33538c40a (patch) | |
tree | b9be79109948eb419e9780199f90388fb629977c | |
parent | Change the regression-tests target to do depend before running regress. (diff) | |
download | wireguard-openbsd-e36ebd4a71ce912d55556bb384951dc33538c40a.tar.xz wireguard-openbsd-e36ebd4a71ce912d55556bb384951dc33538c40a.zip |
Convert to regress.mk
-rw-r--r-- | regress/sys/arch/i386/ldt/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/regress/sys/arch/i386/ldt/Makefile b/regress/sys/arch/i386/ldt/Makefile index afc37056637..8a78a5fef49 100644 --- a/regress/sys/arch/i386/ldt/Makefile +++ b/regress/sys/arch/i386/ldt/Makefile @@ -1,21 +1,16 @@ -# $OpenBSD: Makefile,v 1.2 2001/01/29 02:05:51 niklas Exp $ +# $OpenBSD: Makefile,v 1.3 2002/02/22 23:33:59 art Exp $ # $NetBSD: Makefile,v 1.3 1995/04/20 22:42:19 cgd Exp $ # # C Optimizer (-O) breaks this program - don't use !! CFLAGS=-g PROG= testldt -NOMAN= noman DPADD+= ${LIBARCH} LDADD+= -li386 -install: +.if ${MACHINE_ARCH} != "i386" +REGRESSSKIP="yes" +.endif -regress: - -@if ./testldt; \ - then echo PASSED; \ - else echo FAILED; fi - - -.include <bsd.prog.mk> +.include <bsd.regress.mk> |