34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
# $NetBSD: Makefile.ioctl-c,v 1.25 2013/04/06 13:48:12 uebayasi Exp $
|
|
|
|
# NOTE: <bsd.own.mk> needs to be previously .included for NETBSDSRCDIR
|
|
|
|
# We are trying to get the list of .h files that define all ioctls
|
|
# This version grabs the non-obsolete .h files from the set lists
|
|
# and silently ignores any that don't exist in ${DESTDIR}.
|
|
# NB: The compiler uses the .h files in ${NETBSDSRCDIR}.
|
|
|
|
SETBASE=${NETBSDSRCDIR}/distrib/sets/lists/comp
|
|
SETFILES:=${SETBASE}/mi
|
|
.for md in md.${MACHINE} /md.${MACHINE}.${MACHINE_ARCH}
|
|
.if exists(${SETBASE}/${md})
|
|
SETFILES:= ${SETFILES} ${SETBASE}/${md}
|
|
.endif
|
|
.endfor
|
|
|
|
.if !make(cleandir) && !make(obj) && !make(includes) && !make(install)
|
|
DEPFILEGLOB = ${TOOL_SED} -ne '/\/usr\/include\/.*\.h[ ]/{s/[ ]obsolete$$//;t' -e 's/xenio//;t' -e 's,\.\([^ ]*\).*,${DESTDIR}\1,;p;}' ${SETFILES}
|
|
DEPFILES != ${DEPFILEGLOB} | xargs egrep -l '(_IO\(|_IOR\(|_IOW\(|_IOWR\()' 2>/dev/null || :
|
|
.endif
|
|
|
|
${PROG}-ioctl.c: mkioctls Makefile ${DEPFILES} ${SETFILES}
|
|
${_MKTARGET_CREATE}
|
|
AWK=${TOOL_AWK:Q} CC="${CC}" DESTDIR="${DESTDIR}" SED=${TOOL_SED:Q} \
|
|
${HOST_SH} ${NETBSDSRCDIR}/usr.bin/kdump/mkioctls \
|
|
${DEPFILES} >${.TARGET}
|
|
|
|
SRCS+= ${PROG}-ioctl.c
|
|
CLEANFILES+= ${PROG}-ioctl.c
|
|
DPSRCS+= ${PROG}-ioctl.c
|
|
|
|
${DEPFILES}: .PRECIOUS
|