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

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

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

CVSweb