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/conf/acpi.mk

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 ACPICA_DIR?=            contrib/dev/acpica-unix
    2 OSACPI_MI_DIR?=         dev/acpica
    3 OSACPI_MD_DIR?=         platform/${MACHINE_PLATFORM}/acpica
    4 
    5 .if !defined(SYSDIR) && defined(S)
    6 SYSDIR= $S
    7 .endif
    8 
    9 ACPICA_KERN_PATHS = \
   10         ${SYSDIR}/${ACPICA_DIR}/dispatcher              \
   11         ${SYSDIR}/${ACPICA_DIR}/executer                \
   12         ${SYSDIR}/${ACPICA_DIR}/parser                  \
   13         ${SYSDIR}/${ACPICA_DIR}/events                  \
   14         ${SYSDIR}/${ACPICA_DIR}/hardware                \
   15         ${SYSDIR}/${ACPICA_DIR}/namespace               \
   16         ${SYSDIR}/${ACPICA_DIR}/resources               \
   17         ${SYSDIR}/${ACPICA_DIR}/tables                  \
   18         ${SYSDIR}/${ACPICA_DIR}/utilities               \
   19         ${SYSDIR}/${ACPICA_DIR}/debugger                \
   20         ${SYSDIR}/${ACPICA_DIR}/disassembler
   21 
   22 ACPICA_UTIL_PATHS = \
   23         ${ACPICA_KERN_PATHS}                            \
   24         ${SYSDIR}/${ACPICA_DIR}                         \
   25         ${SYSDIR}/${ACPICA_DIR}/compiler                \
   26         ${SYSDIR}/${ACPICA_DIR}/common
   27 
   28 ${.OBJDIR}/acpi.h: ${SYSDIR}/${ACPICA_DIR}/include/acpi.h
   29         cp ${.ALLSRC} ${.TARGET}
   30 
   31 ${.OBJDIR}/platform/acenv.h: ${SYSDIR}/${ACPICA_DIR}/include/platform/acenv.h
   32         mkdir -p ${.OBJDIR}/platform
   33         sed -e 's/__FreeBSD__/__DragonFly__/' \
   34             -e 's/acfreebsd.h/acdragonfly.h/' ${.ALLSRC} > ${.TARGET}.new
   35         mv -f ${.TARGET}.new ${.TARGET}

Cache object: 72bc493d33ddd9db131bb69117a195aa


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