blob: c9c7b61baa9c79949bf4fe8203e7b89962b2b266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile,v 1.10 2011/04/13 02:49:12 guenther Exp $
# $NetBSD: Makefile,v 1.1 1996/02/21 02:45:47 jtk Exp $
MANSUBDIR=amd64
MAN+= amd64_iopl.2 amd64_get_ioperm.2 \
amd64_get_fsbase.2
MLINKS+=amd64_get_ioperm.2 amd64_set_ioperm.2 \
amd64_get_fsbase.2 amd64_set_fsbase.2
.if ${MACHINE_ARCH} == "amd64"
.PATH: ${LIBC}/amd64
NOPIC=
SRCS+= amd64_iopl.c amd64_get_ioperm.c amd64_set_ioperm.c \
amd64_get_fsbase.c amd64_set_fsbase.c
.include <bsd.lib.mk>
.else
NOPROG=
.include <bsd.prog.mk>
.endif
|