diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-22 23:34:00 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-22 23:34:00 +0000 |
commit | 3708af41a7543ca7bae3f45d3c83b7b068f035b1 (patch) | |
tree | 699ba065941dbf8a90a3eb639c4467c44889221b /regress/sys | |
parent | f5ca7d898029c17c05adeb689f1c16407b1d6310 (diff) |
Convert to regress.mk
Diffstat (limited to 'regress/sys')
-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> |