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/amd64/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/amd64/Makefile 98542 2002-06-21 06:18:05Z mckusick $
    2 #       @(#)Makefile    8.1 (Berkeley) 6/11/93
    3 
    4 # Makefile for i386 links, tags file
    5 
    6 # SYS is normally set in Make.tags.inc
    7 # SYS=/sys
    8 SYS=/nsys
    9 
   10 TAGDIR= i386
   11 
   12 .include "../kern/Make.tags.inc"
   13 
   14 all:
   15         @echo "make links or tags only"
   16 
   17 # Directories in which to place i386 tags links
   18 DI386=  apm i386 ibcs2 include isa linux
   19 
   20 links::
   21         -for i in ${COMMDIR1}; do \
   22             (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done
   23         -for i in ${COMMDIR2}; do \
   24             (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tags; }) done
   25         -for i in ${DI386}; do \
   26             (cd $$i && { rm -f tags; ln -s ../tags tags; }) done
   27 
   28 SI386=  ${SYS}/i386/apm/*.[ch] \
   29         ${SYS}/i386/i386/*.[ch] ${SYS}/i386/ibcs2/*.[ch] \
   30         ${SYS}/i386/include/*.[ch] ${SYS}/i386/isa/*.[ch] \
   31         ${SYS}/i386/linux/*.[ch]
   32 AI386=  ${SYS}/i386/i386/*.s
   33 
   34 tags::
   35         -ctags -wdt ${COMM} ${SI386}
   36         egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
   37             sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
   38                 >> tags
   39         sort -o tags tags
   40         chmod 444 tags

Cache object: ea180ec890db92db2d5c8f257f0bc05b


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