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