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

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

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

CVSweb