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