[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / i386

File: [cvs.NetBSD.org] / src / sys / arch / i386 / Makefile (download)

Revision 1.33, Sun Feb 17 16:23:12 2008 UTC (16 years, 1 month ago) by bouyer
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-nfs-mp-base2, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, ad-socklock-base1
Branch point for: yamt-pf42, yamt-nfs-mp, wrstuden-revivesa, simonb-wapbl, mjf-devfs2
Changes since 1.32: +2 -2 lines

Install xenio.h and xenio3.h in /usr/include/xen, for the benefit
of xentools3.

XXX ignore those in Makefile.ioctl-c, they don't compile properly outside
of the Xen context and the ioctls from xenio.h conflicts with
soundcard.h

#	$NetBSD: Makefile,v 1.33 2008/02/17 16:23:12 bouyer Exp $

# Makefile for i386 tags file and boot blocks

TI386=	${SYSDIR}/arch/i386/tags
SI386=	${SYSDIR}/arch/i386/acpi/*.[ch] \
	${SYSDIR}/arch/i386/eisa/*.[ch] \
	${SYSDIR}/arch/i386/i386/*.[ch] \
	${SYSDIR}/arch/i386/include/*.h \
	${SYSDIR}/arch/i386/isa/*.[ch] \
	${SYSDIR}/arch/i386/mca/*.[ch] \
	${SYSDIR}/arch/i386/pci/*.[ch] \
	${SYSDIR}/arch/i386/pnpbios/*.[ch] \
	${SYSDIR}/contrib/dev/ath/*.[ch] \
	${SYSDIR}/contrib/dev/ath/netbsd/*.[ch] \
	${SYSDIR}/contrib/dev/ath/public/*.[ch]
SI386+=	${SYSDIR}/arch/x86/x86/*.[ch] ${SYSDIR}/arch/x86/include/*.h \
	${SYSDIR}/arch/x86/isa/*.[ch] \
	${SYSDIR}/arch/x86/pci/*.[ch]
AI386=	${SYSDIR}/arch/i386/i386/*.[sS]

# Directories in which to place tags links
DI386=	i386 eisa isa include pci

.include "../../kern/Make.tags.inc"

tags:
	-rm -f ${TI386}
	-echo ${SI386} | xargs ctags -wadtf ${TI386}
	-${FINDCOMM} | xargs ctags -wadtf ${TI386}
	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
		>> ${TI386}
	sort -o ${TI386} ${TI386}

links:
	-for i in ${DI386}; do \
	    (cd $$i && rm -f tags; ln -s ../tags tags); done


SUBDIR=	compile include stand ../x86/include ../xen/include

.include <bsd.subdir.mk>