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/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 #       @(#)Makefile    8.2 (Berkeley) 3/21/94
    2 
    3 # Makefile for kernel tags files, init_sysent, etc.
    4 
    5 ARCH=   i386 # luna68k news3400 pmax sparc tahoe vax
    6 
    7 all:
    8         @echo "make tags, make links or init_sysent.c only"
    9 
   10 init_sysent.c syscalls.c ../sys/syscall.h ../sys/syscall-hide.h \
   11 ../sys/sysproto.h: makesyscalls.sh syscalls.master
   12         -mv -f init_sysent.c init_sysent.c.bak
   13         -mv -f syscalls.c syscalls.c.bak
   14         -mv -f ../sys/syscall.h ../sys/syscall.h.bak
   15         -mv -f ../sys/syscall-hide.h ../sys/syscall-hide.h.bak
   16         -mv -f ../sys/sysproto.h ../sys/sysproto.h.bak
   17         sh makesyscalls.sh syscalls.master
   18 
   19 # Kernel tags:
   20 # Tags files are built in the top-level directory for each architecture,
   21 # with a makefile listing the architecture-dependent files, etc.  The list
   22 # of common files is in ./Make.tags.inc.  Links to the correct tags file
   23 # are placed in each source directory.  We need to have links to tags files
   24 # from the generic directories that are relative to the machine type, even
   25 # via remote mounts; therefore we use symlinks to $SYSTAGS, which points at
   26 # ${SYSDIR}/${MACHINE}/tags.
   27 
   28 SYSTAGS=/var/db/sys_tags
   29 SYSDIR=/sys
   30 
   31 # Directories in which to place tags links (other than machine-dependent)
   32 DGEN=   conf \
   33         dev dev/scsi \
   34         hp hp/dev hp/hpux \
   35         kern libkern \
   36         miscfs miscfs/deadfs miscfs/fdesc miscfs/fifofs miscfs/kernfs \
   37         miscfs/lofs miscfs/nullfs miscfs/portal miscfs/procfs \
   38         miscfs/specfs miscfs/umapfs miscfs/union \
   39         net netccitt netinet netiso netns nfs scripts sys \
   40         ufs ufs/ffs ufs/lfs ufs/mfs ufs/ufs \
   41         vm
   42 
   43 tags::
   44         -for i in ${ARCH}; do \
   45             (cd ../$$i && make ${MFLAGS} tags); done
   46 
   47 links::
   48         rm -f ${SYSTAGS}
   49         ln -s ${SYSDIR}/${MACHINE}/tags ${SYSTAGS}
   50         -for i in ${DGEN}; do \
   51             (cd ../$$i && { rm -f tags; ln -s ${SYSTAGS} tags; }) done
   52         -for i in ${ARCH}; do \
   53             (cd ../$$i && make ${MFLAGS} SYSTAGS=${SYSTAGS} links); done

Cache object: e0a4469d35f751736bfb3094ad571c3c


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