1# arm headers installed on arm64 2 3.PATH: ${SRCTOP}/sys/arm/include ${SRCTOP}/lib/msun/arm 4 5INCS= _inttypes.h \ 6 _limits.h \ 7 _stdint.h \ 8 _types.h \ 9 acle-compat.h \ 10 armreg.h \ 11 asm.h \ 12 atomic.h \ 13 bus.h \ 14 counter.h \ 15 cpu.h \ 16 cpufunc.h \ 17 cpuinfo.h \ 18 efi.h \ 19 elf.h \ 20 exec.h \ 21 float.h \ 22 frame.h \ 23 ieeefp.h \ 24 param.h \ 25 pcb.h \ 26 pcpu.h \ 27 pmap.h \ 28 proc.h \ 29 profile.h \ 30 pte.h \ 31 reg.h \ 32 reloc.h \ 33 resource.h \ 34 setjmp.h \ 35 signal.h \ 36 sysarch.h \ 37 sysreg.h \ 38 tls.h \ 39 ucontext.h \ 40 vdso.h \ 41 vfp.h \ 42 vmparam.h 43# These kernel-only headers are used by procstat's ZFS support. 44# This should be fixed. 45INCS+= pcpu_aux.h \ 46 sf_buf.h 47# from lib/msun/arm 48INCS+= fenv.h 49INCSDIR= ${INCLUDEDIR}/arm 50 51beforeinstall: armdir 52META_TARGETS+= armdir 53 54armdir: 55 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 56 ${DESTDIR}${INCLUDEDIR}/arm 57 58.include <bsd.prog.mk> 59