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

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

1.1     ! nbrk        1: #      $OpenBSD: Makefile,v 1.3 2005/05/06 11:16:48 pedro Exp $
        !             2:
        !             3: S=${.CURDIR}/../..
        !             4: .include "$S/kern/Make.tags.inc"
        !             5:
        !             6: NOPROG=        noprog
        !             7: NOMAN= noman
        !             8:
        !             9: .if ${MACHINE} == "mvmeppc"
        !            10: SUBDIR= stand
        !            11: .endif
        !            12:
        !            13: TMVMEPPC=      $S/arch/mvmeppc/tags
        !            14: SMVMEPPC=      $S/arch/mvmeppc/mvmeppc/*.[ch] \
        !            15:                $S/arch/mvmeppc/include/*.h    \
        !            16:                $S/arch/mvmeppc/isa/*.[ch]     \
        !            17:                $S/arch/mvmeppc/pci/*.[ch]
        !            18: AMVMEPPC=      $S/arch/mvmeppc/mvmeppc/*.[sS]
        !            19:
        !            20: # Directories in which to place mvmeppc tags links
        !            21: DMVMEPPC=      conf mvmeppc include isa pci
        !            22:
        !            23: tags:
        !            24:        -ctags -wdtf ${TMVMEPPC} ${COMM} ${SMVMEPPC}
        !            25:        egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AMVMEPPC} | \
        !            26:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3     \1      /^\2(\3\4$$/;" \
        !            27:                >> ${TMVMEPPC}
        !            28:        sort -o ${TMVMEPPC} ${TMVMEPPC}
        !            29:
        !            30: links:
        !            31:        -for i in ${DMVMEPPC}; do \
        !            32:            cd $$i && rm -f tags; ln -s ${TMVMEPPC} tags; done
        !            33:
        !            34: obj:   _SUBDIRUSE
        !            35:
        !            36: .include <bsd.prog.mk>

CVSweb