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

Annotation of sys/arch/i386/Makefile, Revision 1.1.1.1

1.1       nbrk        1: #      $OpenBSD: Makefile,v 1.16 2006/07/29 12:18:44 thib Exp $
                      2: #      $NetBSD: Makefile,v 1.6 1996/02/01 22:31:28 mycroft Exp $
                      3: #      @(#)Makefile    7.3 (Berkeley) 6/9/91
                      4:
                      5: # Makefile for i386 tags file and boot blocks
                      6:
                      7: S=${.CURDIR}/../..
                      8: .include "$S/kern/Make.tags.inc"
                      9:
                     10: NOPROG=        noprog
                     11: NOMAN= noman
                     12:
                     13: SUBDIR=        stand
                     14:
                     15: TI386= $S/arch/i386/tags
                     16: SI386= $S/arch/i386/eisa/*.[ch] $S/arch/i386/i386/*.[ch] \
                     17:        $S/arch/i386/include/*.h $S/arch/i386/include/pc/*.h \
                     18:        $S/arch/i386/isa/*.[ch] $S/arch/i386/pci/*.[ch]
                     19: AI386= $S/arch/i386/i386/*.[sS] $S/arch/i386/isa/*.[sS] \
                     20:        $S/lib/libkern/arch/i386/*.[sS]
                     21:
                     22: # Directories in which to place i386 tags links
                     23: DI386= conf eisa i386 include isa pci
                     24:
                     25: tags:
                     26:        -ctags -wdtf ${TI386} ${COMM} ${SI386}
                     27:        egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
                     28:            sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3     \1      /^\2(\3\4$$/;" \
                     29:                >> ${TI386}
                     30:        sort -o ${TI386} ${TI386}
                     31:
                     32: links:
                     33:        -for i in ${DI386}; do \
                     34:            (cd $$i && rm -f tags; ln -s ${TI386} tags); done
                     35:
                     36: obj:   _SUBDIRUSE
                     37:
                     38: .include <bsd.prog.mk>

CVSweb