[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / i386

Annotation of src/sys/arch/i386/Makefile, Revision 1.30.8.1

1.30.8.1! bouyer      1: #      $NetBSD$
1.1       cgd         2:
1.3       cgd         3: # Makefile for i386 tags file and boot blocks
1.16      perry       4:
                      5: TI386= ${SYSDIR}/arch/i386/tags
1.30.8.1! bouyer      6: SI386= ${SYSDIR}/arch/i386/acpi/*.[ch] \
        !             7:        ${SYSDIR}/arch/i386/eisa/*.[ch] \
        !             8:        ${SYSDIR}/arch/i386/i386/*.[ch] \
        !             9:        ${SYSDIR}/arch/i386/include/*.h \
        !            10:        ${SYSDIR}/arch/i386/isa/*.[ch] \
1.22      dyoung     11:        ${SYSDIR}/arch/i386/pci/*.[ch] \
1.30.8.1! bouyer     12:        ${SYSDIR}/arch/i386/pnpbios/*.[ch] \
1.28      dyoung     13:        ${SYSDIR}/contrib/dev/ath/*.[ch] \
                     14:        ${SYSDIR}/contrib/dev/ath/netbsd/*.[ch] \
                     15:        ${SYSDIR}/contrib/dev/ath/public/*.[ch]
1.27      dyoung     16: SI386+=        ${SYSDIR}/arch/x86/x86/*.[ch] ${SYSDIR}/arch/x86/include/*.h \
                     17:        ${SYSDIR}/arch/x86/isa/*.[ch] \
                     18:        ${SYSDIR}/arch/x86/pci/*.[ch]
1.28      dyoung     19: AI386= ${SYSDIR}/arch/i386/i386/*.[sS]
1.1       cgd        20:
1.13      mycroft    21: # Directories in which to place tags links
1.16      perry      22: DI386= i386 eisa isa include pci
1.11      mycroft    23:
                     24: .include "../../kern/Make.tags.inc"
1.1       cgd        25:
                     26: tags:
1.28      dyoung     27:        -rm -f ${TI386}
1.29      dyoung     28:        -echo ${SI386} | xargs ctags -wadtf ${TI386}
                     29:        -${FINDCOMM} | xargs ctags -wadtf ${TI386}
1.1       cgd        30:        egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
1.24      dyoung     31:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3     \1      /^\2(\3\4$$/;" \
1.1       cgd        32:                >> ${TI386}
                     33:        sort -o ${TI386} ${TI386}
                     34:
                     35: links:
                     36:        -for i in ${DI386}; do \
1.16      perry      37:            (cd $$i && rm -f tags; ln -s ../tags tags); done
1.13      mycroft    38:
                     39:
1.21      fvdl       40: SUBDIR=        compile include stand ../x86/include
1.3       cgd        41:
1.11      mycroft    42: .include <bsd.subdir.mk>

CVSweb <webmaster@jp.NetBSD.org>