[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / arch / sparc

Annotation of sys/arch/sparc/Makefile, Revision 1.1

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.9 2005/05/06 11:16:48 pedro Exp $
        !             2: #      $NetBSD: Makefile,v 1.4 1996/03/25 22:48:09 mrg Exp $
        !             3:
        !             4: #
        !             5: # Makefile for sparc links, tags file
        !             6:
        !             7: S=${.CURDIR}/../..
        !             8: .include "$S/kern/Make.tags.inc"
        !             9:
        !            10: SUBDIR= stand
        !            11:
        !            12: NOPROG=        noprog
        !            13: NOMAN= noman
        !            14:
        !            15: TSPARC=        $S/arch/sparc/tags
        !            16: DIRS=  conf dev fpu include rcons sbus sparc
        !            17:
        !            18: links::
        !            19:        -for i in ${DIRS}; do \
        !            20:            (cd $$i && { rm -f tags; ln -s ${TSPARC} tags; }) done
        !            21:
        !            22: SPARC= $S/arch/sparc/dev/*.[ch] $S/arch/sparc/fpu/*.[ch] \
        !            23:        $S/arch/sparc/include/*.[ch] $S/arch/sparc/sparc/*.[ch]
        !            24: ASPARC=        $S/arch/sparc/sparc/*.[sS] $S/lib/libkern/arch/sparc/*.[sS]
        !            25:
        !            26: tags:
        !            27:        -ctags -wdtf ${TSPARC} ${COMM} ${SPARC}
        !            28:        egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ASPARC} | \
        !            29:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3     \1      /^\2(\3\4$$/;" \
        !            30:                >> ${TSPARC}
        !            31:        sort -o ${TSPARC} ${TSPARC}
        !            32:
        !            33: obj:   _SUBDIRUSE
        !            34:
        !            35: .include <bsd.prog.mk>
        !            36: .include <bsd.subdir.mk>

CVSweb