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/i386/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 #       from: @(#)Makefile      7.3 (Berkeley) 6/9/91
    2 # $FreeBSD: src/sys/i386/Makefile,v 1.2.16.2 1999/09/05 08:10:05 peter Exp $
    3 
    4 # Makefile for i386 tags file
    5 
    6 all:
    7         @echo "make tags or links only"
    8 
    9 TI386=  ${.OBJDIR}/../i386/tags
   10 SI386=  ${.CURDIR}/../i386/i386/*.[ch] ${.CURDIR}/../i386/include/*.h \
   11         ${.CURDIR}/../i386/isa/*.[ch]
   12 AI386=  ${.CURDIR}/../i386/i386/*.s
   13 
   14 # Directories in which to place i386 tags links
   15 DI386=  eisa isa include
   16 
   17 tags:
   18         -ctags -dtf ${TI386} ${COMM} ${SI386}
   19         egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
   20             sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
   21                 >> ${TI386}
   22         sort -o ${TI386} ${TI386}
   23 
   24 #XXX This doesn't work because ${.OBJDIR}/$i doesn't exist
   25 #
   26 #links:
   27 #       -for i in ${DI386}; do \
   28 #           (cd ${.CURDIR}/$$i && rm -f ${.OBJDIR}/tags; \
   29 #           ln -s ${.OBJDIR}/../tags ${.OBJDIR}/tags) \
   30 #       done

Cache object: 0ced41177111f4899e3aba4b83dc9a19


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