Home | History | Annotate | Line # | Download | only in i386
Makefile revision 1.23.10.1
      1  1.23.10.1     yamt #	$NetBSD: Makefile,v 1.23.10.1 2005/03/19 08:33:01 yamt Exp $
      2        1.1      cgd 
      3        1.3      cgd # Makefile for i386 tags file and boot blocks
      4       1.16    perry 
      5       1.16    perry TI386=	${SYSDIR}/arch/i386/tags
      6       1.16    perry SI386=	${SYSDIR}/arch/i386/i386/*.[ch] ${SYSDIR}/arch/i386/include/*.h \
      7       1.16    perry 	${SYSDIR}/arch/i386/eisa/*.[ch] ${SYSDIR}/arch/i386/isa/*.[ch] \
      8       1.22   dyoung 	${SYSDIR}/arch/i386/pci/*.[ch] \
      9       1.22   dyoung 	${SYSDIR}/../contrib/sys/arch/i386/dev/*.[ch] \
     10       1.22   dyoung 	${SYSDIR}/../contrib/sys/dev/ic/*.[ch]
     11       1.23   dyoung AI386=	${SYSDIR}/arch/i386/i386/*.[sS] ${SYSDIR}/arch/i386/isa/*.[sS]
     12        1.1      cgd 
     13       1.13  mycroft # Directories in which to place tags links
     14       1.16    perry DI386=	i386 eisa isa include pci
     15       1.11  mycroft 
     16       1.11  mycroft .include "../../kern/Make.tags.inc"
     17        1.1      cgd 
     18        1.1      cgd tags:
     19       1.18    lukem 	rm -f ${TI386}
     20       1.18    lukem 	-echo ${SI386} ${COMM} | xargs ctags -wadtf ${TI386}
     21        1.1      cgd 	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
     22  1.23.10.1     yamt 	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
     23        1.1      cgd 		>> ${TI386}
     24        1.1      cgd 	sort -o ${TI386} ${TI386}
     25        1.1      cgd 
     26        1.1      cgd links:
     27        1.1      cgd 	-for i in ${DI386}; do \
     28       1.16    perry 	    (cd $$i && rm -f tags; ln -s ../tags tags); done
     29       1.13  mycroft 
     30       1.13  mycroft 
     31       1.21     fvdl SUBDIR=	compile include stand ../x86/include
     32        1.3      cgd 
     33       1.11  mycroft .include <bsd.subdir.mk>
     34