NetBSD-5.0.2/sys/arch/mipsco/Makefile

#	$NetBSD: Makefile,v 1.5 2008/10/25 22:27:38 apb Exp $

# Makefile for mipsco tags file

# Find where mips source files are for inclusion in tags
.include <../mips/Makefile.inc>

TMIPSCO=	../mipsco/tags
SMIPSCO=	../mipsco/mipsco/*.[ch] ../mipsco/include/*.h \
		../mipsco/obio/*.[ch]
AMIPSCO=	../mipsco/mipsco/*.S

# Directories in which to place tags links
DMIPSCO=	obio include

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

tags:
	-ctags -wdtf ${TMIPSCO} ${SMIPSCO} ${SMIPS} ${COMM}
	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AMIPSCO} ${AMIPS} | \
	    ${TOOL_SED} -e \
		"s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
	    >> ${TMIPSCO}
	sort -o ${TMIPSCO} ${TMIPSCO}

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

SUBDIR=	compile include stand

.include <bsd.subdir.mk>