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/modules/procfs/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/8.3/sys/modules/procfs/Makefile 206336 2010-04-07 02:24:41Z nwhitehorn $
    2 
    3 .PATH: ${.CURDIR}/../../fs/procfs
    4 
    5 KMOD=           procfs
    6 SRCS=
    7 SRCS+=          opt_compat.h
    8 SRCS+=          vnode_if.h
    9 SRCS+=          procfs_ctl.c
   10 SRCS+=          procfs_dbregs.c
   11 SRCS+=          procfs_fpregs.c
   12 SRCS+=          procfs_ioctl.c
   13 SRCS+=          procfs_map.c
   14 SRCS+=          procfs_mem.c
   15 SRCS+=          procfs_note.c
   16 SRCS+=          procfs_osrel.c
   17 SRCS+=          procfs_regs.c
   18 SRCS+=          procfs_rlimit.c
   19 SRCS+=          procfs_status.c
   20 SRCS+=          procfs_type.c
   21 SRCS+=          procfs.c
   22 
   23 EXPORT_SYMS=
   24 EXPORT_SYMS+=   procfs_attr
   25 EXPORT_SYMS+=   procfs_candebug
   26 EXPORT_SYMS+=   procfs_docurproc
   27 EXPORT_SYMS+=   procfs_doprocfile
   28 EXPORT_SYMS+=   procfs_doprocmem
   29 EXPORT_SYMS+=   procfs_notsystem
   30 
   31 .if !defined(KERNBUILDDIR)
   32 opt_compat.h:
   33         echo "#define COMPAT_43 1" > ${.TARGET}
   34         echo "#define COMPAT_FREEBSD4 1" >> ${.TARGET}
   35         echo "#define COMPAT_FREEBSD5 1" >> ${.TARGET}
   36         echo "#define COMPAT_FREEBSD6 1" >> ${.TARGET}
   37 .if ${MACHINE_ARCH} == "amd64"
   38         echo "#define COMPAT_FREEBSD32 1" >> ${.TARGET}
   39         echo "#define COMPAT_LINUX32 1" >> ${.TARGET}
   40 .endif
   41 .endif
   42 
   43 .include <bsd.kmod.mk>

Cache object: cda5dbc6d8a13cba08df7fc67ade7b64


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