NetBSD/usr.bin/kdump/Makefile.ioctl-c

34 lines
1.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile.ioctl-c,v 1.25 2013/04/06 13:48:12 uebayasi Exp $
2002-09-19 15:31:21 +04:00
# 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} \
2003-10-19 08:25:00 +04:00
${HOST_SH} ${NETBSDSRCDIR}/usr.bin/kdump/mkioctls \
${DEPFILES} >${.TARGET}
SRCS+= ${PROG}-ioctl.c
CLEANFILES+= ${PROG}-ioctl.c
2008-02-16 10:17:58 +03:00
DPSRCS+= ${PROG}-ioctl.c
${DEPFILES}: .PRECIOUS