blob: 901cc87392bae2613c963ce48027106af7157007 (
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
28
29
30
31
|
# i386 headers installed on amd64
.PATH: ${SRCTOP}/sys/i386/include
INCS= \
asm.h \
asmacros.h \
atomic.h \
cpufunc.h \
pmap.h \
proc.h \
profile.h \
segments.h \
vmparam.h
# These kernel-only headers are used by procstat's ZFS support.
# This should be fixed.
INCS+= \
counter.h \
md_var.h \
pcpu.h \
pcpu_aux.h
INCSDIR= ${INCLUDEDIR}/i386
beforeinstall: i386dir
META_TARGETS+= i386dir
i386dir:
${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}${INCLUDEDIR}/i386
.include <bsd.prog.mk>
|