[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.28.2.1

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

CVSweb <webmaster@jp.NetBSD.org>