2022-06-13 19:35:38 +02:00
|
|
|
# i386 headers installed on amd64
|
|
|
|
|
|
|
|
.PATH: ${SRCTOP}/sys/i386/include
|
2022-06-13 19:35:38 +02:00
|
|
|
INCS= \
|
2022-06-13 19:35:39 +02:00
|
|
|
asm.h \
|
|
|
|
asmacros.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
atomic.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
cpufunc.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
pmap.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
proc.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
profile.h \
|
2022-06-13 19:35:39 +02:00
|
|
|
segments.h \
|
|
|
|
vmparam.h
|
2022-06-13 19:35:40 +02:00
|
|
|
# These kernel-only headers are used by procstat's ZFS support.
|
|
|
|
# This should be fixed.
|
|
|
|
INCS+= \
|
2022-06-13 19:35:40 +02:00
|
|
|
counter.h \
|
2022-06-13 19:35:40 +02:00
|
|
|
md_var.h \
|
2022-06-13 19:35:40 +02:00
|
|
|
pcpu.h \
|
|
|
|
pcpu_aux.h
|
2022-06-13 19:35:38 +02:00
|
|
|
INCSDIR= ${INCLUDEDIR}/i386
|
|
|
|
|
2022-06-13 22:37:34 +02:00
|
|
|
beforeinstall: i386dir
|
|
|
|
META_TARGETS+= i386dir
|
|
|
|
|
|
|
|
i386dir:
|
|
|
|
${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \
|
|
|
|
${DESTDIR}${INCLUDEDIR}/i386
|
|
|
|
|
|
|
|
|
2022-06-13 19:35:38 +02:00
|
|
|
.include <bsd.prog.mk>
|