[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/Makefile

Version: -  FREEBSD  -  FREEBSD7  -  FREEBSD70  -  FREEBSD6  -  FREEBSD64  -  FREEBSD63  -  FREEBSD62  -  FREEBSD61  -  FREEBSD60  -  FREEBSD5  -  FREEBSD55  -  FREEBSD54  -  FREEBSD53  -  FREEBSD52  -  FREEBSD51  -  FREEBSD50  -  FREEBSD4  -  FREEBSD3  -  FREEBSD22  -  linux-2.6  -  linux-2.4.22  -  MK83  -  MK84  -  PLAN9  -  DFBSD  -  NETBSD  -  NETBSD5  -  NETBSD4  -  NETBSD3  -  NETBSD20  -  OPENBSD  -  xnu-517  -  xnu-792  -  xnu-792.6.70  -  xnu-1228  -  OPENSOLARIS  -  minix-3-1-1  -  TRUSTEDBSD-SEBSD  -  FREEBSD-LIBC  -  FREEBSD7-LIBC  -  FREEBSD6-LIBC  -  GLIBC27 
SearchContext: -  none  -  excerpts  -  bigexcerpts 

  1 # $FreeBSD: src/sys/i386/Makefile,v 1.12 2007/05/13 18:21:54 mckusick Exp $
  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 
  9 TAGDIR= i386
 10 
 11 .include "../kern/Make.tags.inc"
 12 
 13 all:
 14         @echo "make links or tags only"
 15 
 16 # Directories in which to place i386 tags links
 17 DI386=  apm i386 ibcs2 include isa linux
 18 
 19 links::
 20         -for i in ${COMMDIR1}; do \
 21             (cd $$i && { rm -f tags; ln -s ../${TAGDIR}/tags tags; }) done
 22         -for i in ${COMMDIR2}; do \
 23             (cd $$i && { rm -f tags; ln -s ../../${TAGDIR}/tags tags; }) done
 24         -for i in ${DI386}; do \
 25             (cd $$i && { rm -f tags; ln -s ../tags tags; }) done
 26 
 27 SI386=  ${SYS}/i386/acpica/*.[ch] ${SYS}/i386/bios/*.[ch] \
 28         ${SYS}/i386/cpufreq/*.[ch] ${SYS}/i386/pci/*.[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

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]


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