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/doc/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/doc/Makefile 131986 2004-07-11 16:13:57Z dfr $
    2 
    3 .PATH:  ${.CURDIR}/../kern
    4 
    5 SRCS+=          kern
    6 SRCS+=          sys
    7 MFILES+=        device_if.m
    8 MFILES+=        bus_if.m
    9 
   10 all:    ${MFILES:T:S/.m/.h/} ${SRCS}
   11         doxygen
   12 
   13 LN?=            ln
   14 AWK?=           awk
   15 S?=             ${.CURDIR}/..
   16 
   17 CLEANFILES+=    ${SRCS}
   18 .for dir in ${SRCS}
   19 ${dir}:
   20         ${LN} -sf ${.CURDIR}/../${dir} .
   21 .endfor
   22 
   23 .for mfile in ${MFILES}
   24 CLEANFILES+=    ${mfile:T:S/.m$/.h/}
   25 ${mfile:T:S/.m$/.h/}: ${mfile}
   26         ${AWK} -f $S/tools/makeobjops.awk $> -h
   27 .endfor
   28 
   29 clean::
   30         rm -f ${CLEANFILES}

Cache object: 54dd83674f5f9724c858beca5085aca5


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