summaryrefslogtreecommitdiff
path: root/regress/sys/arch/i386/ldt/Makefile
blob: afc3705663723f024cdee2a11380ca53c37a85f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$OpenBSD: Makefile,v 1.2 2001/01/29 02:05:51 niklas 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:

regress:
	-@if ./testldt; \
	then echo PASSED; \
	else echo FAILED; fi


.include <bsd.prog.mk>