The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/alpha/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/6.4/sys/alpha/Makefile 70549 2000-12-31 23:26:34Z mjacob $
    2 
    3 # Makefile for alpha tags file
    4 
    5 # SYS is normally set in Make.tags.inc
    6 # SYS=/sys
    7 
    8 TAGDIR= alpha
    9 
   10 .include "../kern/Make.tags.inc"
   11 
   12 all:
   13         @echo "make tags only"
   14 
   15 SALPHA= ${SYS}/alpha/mcbus/*.[ch] ${SYS}/alpha/tlsb/*.[ch] \
   16         ${SYS}/alpha/alpha/*.[ch] ${SYS}/alpha/pci/*.[ch] \
   17         ${SYS}/alpha/include/*.[ch] ${SYS}/alpha/isa/*.[ch] \
   18         ${SYS}/alpha/tc/*.[ch] ${SYS}/alpha/osf1/*.[ch] \
   19         ${SYS}/alpha/linux/*.[ch]
   20 AALPHA= ${SYS}/alpha/alpha/*.s
   21 
   22 tags::
   23         @rm -f tags
   24         -ctags -wdt ${COMM} ${SALPHA}
   25         egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AALPHA} | \
   26             sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
   27                 >> tags
   28         sort -o tags tags
   29         chmod 444 tags

Cache object: dc56cb6671daa03d2a0fa565c35d645c


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.