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$
    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_regs.c
   17 SRCS+=          procfs_rlimit.c
   18 SRCS+=          procfs_status.c
   19 SRCS+=          procfs_type.c
   20 SRCS+=          procfs.c
   21 
   22 EXPORT_SYMS=
   23 EXPORT_SYMS+=   procfs_attr
   24 EXPORT_SYMS+=   procfs_candebug
   25 EXPORT_SYMS+=   procfs_docurproc
   26 EXPORT_SYMS+=   procfs_doprocfile
   27 EXPORT_SYMS+=   procfs_doprocmem
   28 EXPORT_SYMS+=   procfs_notsystem
   29 
   30 .if !defined(KERNBUILDDIR)
   31 opt_compat.h:
   32         echo "#define COMPAT_43 1" > ${.TARGET}
   33         echo "#define COMPAT_FREEBSD4 1" >> ${.TARGET}
   34         echo "#define COMPAT_FREEBSD5 1" >> ${.TARGET}
   35         echo "#define COMPAT_FREEBSD6 1" >> ${.TARGET}
   36 .if ${MACHINE_ARCH} == "amd64"
   37         echo "#define COMPAT_IA32 1" >> ${.TARGET}
   38         echo "#define COMPAT_LINUX32 1" >> ${.TARGET}
   39 .endif
   40 .endif
   41 
   42 .include <bsd.kmod.mk>

Cache object: eedf62e16b659bac9e3a80394f096478


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