1 1.32 knakahar # $NetBSD: Makefile.ioctl-c,v 1.32 2016/04/01 07:23:15 knakahara Exp $ 2 1.5 lukem 3 1.5 lukem # NOTE: <bsd.own.mk> needs to be previously .included for NETBSDSRCDIR 4 1.1 mrg 5 1.24 dsl # We are trying to get the list of .h files that define all ioctls 6 1.24 dsl # This version grabs the non-obsolete .h files from the set lists 7 1.24 dsl # and silently ignores any that don't exist in ${DESTDIR}. 8 1.24 dsl # NB: The compiler uses the .h files in ${NETBSDSRCDIR}. 9 1.24 dsl 10 1.26 christos SETBASES= ${NETBSDSRCDIR}/distrib/sets/lists/comp \ 11 1.26 christos ${NETBSDSRCDIR}/distrib/sets/lists/xcomp 12 1.26 christos 13 1.26 christos .for sb in ${SETBASES} 14 1.26 christos .if exists(${sb}/mi) 15 1.26 christos SETFILES:=${SETFILES} ${sb}/mi 16 1.26 christos .endif 17 1.24 dsl .for md in md.${MACHINE} /md.${MACHINE}.${MACHINE_ARCH} 18 1.26 christos .if exists(${sb}/${md}) 19 1.26 christos SETFILES:= ${SETFILES} ${sb}/${md} 20 1.24 dsl .endif 21 1.24 dsl .endfor 22 1.26 christos .endfor 23 1.30 joerg .if ${MKDTRACE} != "no" 24 1.29 christos EXTRAS= ${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common/sys/dtrace.h 25 1.29 christos .endif 26 1.8 thorpej 27 1.25 uebayasi .if !make(cleandir) && !make(obj) && !make(includes) && !make(install) 28 1.26 christos DEPFILEGLOB = ${TOOL_SED} -ne '/\/usr\/.*include\/.*\.h[ ]/{s/[ ]obsolete$$//;t' -e 's/xenio//;t' -e 's,\.\([^ ]*\).*,${DESTDIR}\1,;p;}' ${SETFILES} 29 1.29 christos DEPFILES != (${DEPFILEGLOB}; echo ${EXTRAS}) | xargs egrep -l '(_IO\(|_IOR\(|_IOW\(|_IOWR\()' 2>/dev/null || : 30 1.7 christos .endif 31 1.6 christos 32 1.24 dsl ${PROG}-ioctl.c: mkioctls Makefile ${DEPFILES} ${SETFILES} 33 1.10 lukem ${_MKTARGET_CREATE} 34 1.23 apb AWK=${TOOL_AWK:Q} CC="${CC}" DESTDIR="${DESTDIR}" SED=${TOOL_SED:Q} \ 35 1.9 lukem ${HOST_SH} ${NETBSDSRCDIR}/usr.bin/kdump/mkioctls \ 36 1.16 tron ${DEPFILES} >${.TARGET} 37 1.16 tron 38 1.16 tron SRCS+= ${PROG}-ioctl.c 39 1.16 tron CLEANFILES+= ${PROG}-ioctl.c 40 1.19 matt DPSRCS+= ${PROG}-ioctl.c 41 1.26 christos CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/libdrm 42 1.26 christos CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include/pixman-1 43 1.26 christos CPPFLAGS+= -I${DESTDIR}/usr/X11R7/include 44 1.32 knakahar .if ${MKDTRACE} != "no" 45 1.29 christos CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/sys 46 1.29 christos CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common 47 1.31 joerg CPPFLAGS+= -D_DEV_IC_BT8XX_H_ 48 1.29 christos .endif 49 1.26 christos CPPFLAGS+= -D_ALTQ_ALTQ_JOBS_H_ # redefinition of inline 50 1.26 christos # De-select one, dup ioctls 51 1.26 christos CPPFLAGS+= -D_VIA_DRM_H_ # Missing header 52 1.28 christos #CPPFLAGS+= -D_I915_DRM_H_ # Dup ioctls 53 1.28 christos CPPFLAGS+= -DQXL_DRM_H # Dup ioctls 54 1.26 christos CPPFLAGS+= -D__R128_DRM_H__ # Dup ioctls 55 1.26 christos CPPFLAGS+= -D__SIS_DRM_H__ # Dup ioctls 56 1.26 christos CPPFLAGS+= -D__SAVAGE_DRM_H__ # Dup ioctls 57 1.26 christos CPPFLAGS+= -D__RADEON_DRM_H__ # Dup ioctls 58 1.26 christos CPPFLAGS+= -D__MACH64_DRM_H__ # Dup ioctls 59 1.26 christos CPPFLAGS+= -D__MGA_DRM_H__ # Dup ioctls 60 1.2 mrg 61 1.6 christos ${DEPFILES}: .PRECIOUS 62