1# i386 headers installed on amd64 2 3.PATH: ${SRCTOP}/sys/i386/include 4INCS= \ 5 asm.h \ 6 asmacros.h \ 7 atomic.h \ 8 cpufunc.h \ 9 pmap.h \ 10 proc.h \ 11 profile.h \ 12 segments.h \ 13 vmparam.h 14# These kernel-only headers are used by procstat's ZFS support. 15# This should be fixed. 16INCS+= \ 17 counter.h \ 18 md_var.h \ 19 pcpu.h \ 20 pcpu_aux.h 21INCSDIR= ${INCLUDEDIR}/i386 22 23beforeinstall: i386dir 24META_TARGETS+= i386dir 25 26i386dir: 27 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 28 ${DESTDIR}${INCLUDEDIR}/i386 29 30 31.include <bsd.prog.mk> 32