Home | History | Annotate | Line # | Download | only in mipsco
Makefile revision 1.2
      1 #	$NetBSD: Makefile,v 1.2 2000/08/13 19:25:13 soren Exp $
      2 
      3 # Makefile for mipsco tags file
      4 
      5 # Find where mips source files are for inclusion in tags
      6 .include <../mips/Makefile.inc>
      7 
      8 TMIPSCO=	../mipsco/tags
      9 SMIPSCO=	../mipsco/mipsco/*.[ch] ../mipsco/include/*.h \
     10 		../mipsco/obio/*.[ch]
     11 AMIPSCO=	../mipsco/mipsco/*.S
     12 
     13 # Directories in which to place tags links
     14 DMIPSCO=	obio include
     15 
     16 .include "../../kern/Make.tags.inc"
     17 
     18 tags:
     19 	-ctags -wdtf ${TMIPSCO} ${SMIPSCO} ${SMIPS} ${COMM}
     20 	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AMIPSCO} ${AMIPS} | \
     21 	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
     22 	    >> ${TMIPSCO}
     23 	sort -o ${TMIPSCO} ${TMIPSCO}
     24 
     25 links:
     26 	-for i in ${DMIPSCO}; do \
     27 	    cd $$i && rm -f tags; ln -s ../tags tags; done
     28 
     29 SUBDIR=	include
     30 
     31 .include <bsd.subdir.mk>
     32