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/kern/Make.tags.inc

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 #       $NetBSD: Make.tags.inc,v 1.18 2008/01/28 18:22:36 dyoung Exp $
    2 #
    3 #       from: @(#)Make.tags.inc 8.1 (Berkeley) 6/11/93
    4 
    5 # Common files for "make tags".
    6 # Included by the Makefile for each architecture.
    7 
    8 # Put the ../sys stuff near the end so that subroutine definitions win when
    9 # there is a struct tag with the same name (eg., vmmeter).  The real
   10 # solution would probably be for ctags to generate "struct vmmeter" tags.
   11 
   12 .ifmake tags
   13 # The invocation below returns every directory that contains sources, excluding
   14 # the arch directories. Traditionally, COMM would have been an explicit list.
   15 # This promises to be easier to maintain, considering how often the directory
   16 # structure of the kernel sources has been changing recently.
   17 SYSDIR?= ${.CURDIR:H:H}
   18 FINDCOMM=       find -H ${SYSDIR} \( -path '*/dist/ipf' -o -name arch -o -name rump \) -prune -o -type f -name "*.[ch]" \( \! -name 'altq.h' \! -name 'nbcompat.h' \! -name 'pf_osfp.c' \! -name 'unichromereg.h' \! -name 'usb_port.h' \! -name 'midway*' \! -name 'if_lmc.[ch]' \) -print | \
   19     sort -t / -u
   20 COMM!=  ${FINDCOMM}
   21 .endif

Cache object: 9f8728010f740de2d3ddf9027678e9ca


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