NetBSD/sys/arch/xen/Makefile
bouyer e9666f30ad Merge the bouyer-xen2 branch. This add supports for the Xen 2.0 virtual
machine kernel (both privileged and non-privileged domains), and remove support
for the old xen 1.2.
2005-03-09 22:39:19 +00:00

38 lines
934 B
Makefile

# $NetBSD: Makefile,v 1.2 2005/03/09 22:39:19 bouyer Exp $
# Makefile for xen tags file
.include "../../kern/Make.tags.inc"
.ifmake tags
.include "${SYSDIR}/arch/xen/conf/Makefile.arch.inc"
.endif
TXEN= ${SYSDIR}/arch/xen/tags
SXEN!= awk '($$2 ~ /^arch.*\.[c]$$/) {print "${SYSDIR}/" $$2}' \
${SYSDIR}/arch/xen/conf/files.xen
AXEN!= awk '($$2 ~ /^arch.*\.[sS]$$/) {print "${SYSDIR}/" $$2}' \
${SYSDIR}/arch/xen/conf/files.xen
AXEN+= ${SYSDIR}/arch/xen/${XEN_BUILD}/*.[sS]
# Directories in which to place tags links
DXEN= xen ${XEN_MACHINE_ARCHS} include
tags:
rm -f ${TXEN}
-echo ${SXEN} ${COMM} | xargs ctags -wadtf ${TXEN}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AXEN} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${TXEN}
sort -o ${TXEN} ${TXEN}
links:
-for i in ${DXEN}; do \
(cd $$i && rm -f tags; ln -s ../tags tags); done
SUBDIR= compile include
.include <bsd.subdir.mk>