Home | History | Annotate | Line # | Download | only in ofppc
Makefile revision 1.6.136.1
      1  1.6.136.1   jruoho #	$NetBSD: Makefile,v 1.6.136.1 2011/06/06 09:06:21 jruoho Exp $
      2  1.6.136.1   jruoho 
      3  1.6.136.1   jruoho .include <../powerpc/Makefile.inc>
      4  1.6.136.1   jruoho 
      5  1.6.136.1   jruoho TOFPPC=	${SYSDIR}/arch/ofppc/tags
      6  1.6.136.1   jruoho SOFPPC=	${SYSDIR}/arch/ofppc/ofppc/*.[ch] \
      7  1.6.136.1   jruoho 	${SYSDIR}/arch/ofppc/isa/*.[ch] \
      8  1.6.136.1   jruoho 	${SYSDIR}/arch/ofppc/pci/*.[ch] \
      9  1.6.136.1   jruoho 	${SYSDIR}/arch/ofppc/include/*.h
     10  1.6.136.1   jruoho AOFPPC=	${SYSDIR}/arch/ofppc/ofppc/*.S
     11  1.6.136.1   jruoho 
     12  1.6.136.1   jruoho DOFPPC=	include
     13  1.6.136.1   jruoho 
     14  1.6.136.1   jruoho .include "../../kern/Make.tags.inc"
     15  1.6.136.1   jruoho 
     16  1.6.136.1   jruoho tags:
     17  1.6.136.1   jruoho 	-rm -f ${TOFPPC}
     18  1.6.136.1   jruoho 	-echo ${SOFPPC} ${SPPC} | xargs ctags -wadtf ${TOFPPC}
     19  1.6.136.1   jruoho 	-${FINDCOMM} | xargs ctags -wadtf ${TOFPPC}
     20  1.6.136.1   jruoho 	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AOFPPC} ${APPC} | \
     21  1.6.136.1   jruoho 	    ${TOOL_SED} -e \
     22  1.6.136.1   jruoho 		"s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
     23  1.6.136.1   jruoho 	    >> ${TOFPPC}
     24  1.6.136.1   jruoho 	sort -o ${TOFPPC} ${TOFPPC}
     25  1.6.136.1   jruoho 
     26  1.6.136.1   jruoho links:
     27  1.6.136.1   jruoho 	-for i in ${DOFPPC}; do \
     28  1.6.136.1   jruoho 	    cd $$i && rm -f tags; ln -s ../tags tags; done
     29  1.6.136.1   jruoho 
     30        1.1       ws 
     31        1.6    lukem SUBDIR=	compile include stand
     32        1.1       ws 
     33        1.3  mycroft .include <bsd.subdir.mk>
     34