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/acpi/acpi/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: src/sys/modules/acpi/acpi/Makefile,v 1.8.2.2 2005/07/21 08:50:26 bruno Exp $
    2 
    3 .PATH: ${.CURDIR}/../../../contrib/dev/acpica \
    4        ${.CURDIR}/../../../pci \
    5        ${.CURDIR}/../../../dev/acpica \
    6        ${.CURDIR}/../../../dev/acpica/Osd \
    7        ${.CURDIR}/../../../${MACHINE_ARCH}/acpica
    8 
    9 KMOD=   acpi
   10 WARNS?= 2
   11 
   12 # ACPI CA sources
   13 CFLAGS+=   -I${.CURDIR}/../../../contrib/dev/acpica
   14 SRCS+=  dsfield.c dsinit.c dsmethod.c dsmthdat.c
   15 SRCS+=  dsobject.c dsopcode.c dsutils.c dswexec.c dswload.c
   16 SRCS+=  dswscope.c dswstate.c evevent.c evgpe.c evgpeblk.c
   17 SRCS+=  evmisc.c evregion.c evrgnini.c evsci.c evxface.c
   18 SRCS+=  evxfevnt.c evxfregn.c exconfig.c exconvrt.c excreate.c
   19 SRCS+=  exdump.c exfield.c exfldio.c exmisc.c exmutex.c
   20 SRCS+=  exnames.c exoparg1.c exoparg2.c exoparg3.c exoparg6.c
   21 SRCS+=  exprep.c exregion.c exresnte.c exresolv.c exresop.c
   22 SRCS+=  exstore.c exstoren.c exstorob.c exsystem.c exutils.c
   23 SRCS+=  hwacpi.c hwgpe.c hwregs.c hwsleep.c hwtimer.c
   24 SRCS+=  nsaccess.c nsalloc.c nsdump.c nseval.c nsinit.c
   25 SRCS+=  nsload.c nsnames.c nsobject.c nsparse.c nssearch.c
   26 SRCS+=  nsutils.c nswalk.c nsxfeval.c nsxfname.c nsxfobj.c
   27 SRCS+=  psargs.c psopcode.c psparse.c psscope.c
   28 SRCS+=  pstree.c psutils.c pswalk.c psxface.c
   29 SRCS+=  rsaddr.c rscalc.c rscreate.c rsdump.c rsio.c
   30 SRCS+=  rsirq.c rslist.c rsmemory.c rsmisc.c rsutils.c
   31 SRCS+=  rsxface.c tbconvrt.c tbget.c tbgetall.c tbinstal.c
   32 SRCS+=  tbrsdt.c tbutils.c tbxface.c tbxfroot.c utalloc.c
   33 SRCS+=  utclib.c utcopy.c utdebug.c utdelete.c uteval.c
   34 SRCS+=  utglobal.c utinit.c utmath.c utmisc.c utobject.c
   35 SRCS+=  utxface.c
   36 
   37 # OSPM layer and core hardware drivers
   38 SRCS+=  acpi.c acpi_button.c acpi_isab.c
   39 SRCS+=  acpi_package.c acpi_pci.c acpi_pcib.c acpi_pcib_acpi.c
   40 SRCS+=  acpi_pcib_pci.c acpi_powerres.c acpi_quirk.c acpi_resource.c
   41 SRCS+=  acpi_timer.c acpi_pci_link.c acpi_thermal.c
   42 
   43 # ACPI hardware drivers, mostly used for mobile systems.
   44 SRCS+=  acpi_acad.c acpi_battery.c acpi_cmbat.c acpi_cpu.c
   45 SRCS+=  acpi_ec.c acpi_lid.c acpi_perf.c acpi_throttle.c
   46 
   47 # OSD layer
   48 SRCS+=  OsdDebug.c 
   49 SRCS+=  OsdHardware.c OsdInterrupt.c OsdMemory.c OsdSchedule.c
   50 SRCS+=  OsdStream.c OsdSynch.c OsdTable.c OsdEnvironment.c 
   51 SRCS+=  opt_acpi.h opt_bus.h opt_ddb.h
   52 SRCS+=  acpi_if.h acpi_quirks.h bus_if.h cpufreq_if.h device_if.h
   53 SRCS+=  isa_if.h pci_if.h pcib_if.h
   54 
   55 # Debugging support
   56 DBSRC=  dbcmds.c dbdisply.c dbexec.c dbfileio.c dbhistry.c
   57 DBSRC+= dbinput.c dbstats.c dbutils.c dbxface.c
   58 DBSRC+= dmbuffer.c dmnames.c dmopcode.c dmobject.c dmresrc.c dmresrcl.c
   59 DBSRC+= dmresrcs.c dmutils.c dmwalk.c
   60 
   61 .if ACPI_MAX_THREADS
   62 CFLAGS+=-DACPI_MAX_THREADS=${ACPI_MAX_THREADS}
   63 .endif
   64 .if ACPI_NO_SEMAPHORES
   65 CFLAGS+=-DACPI_NO_SEMAPHORES
   66 .endif
   67 .if ACPI_DEBUG
   68 CFLAGS+=-DACPI_DEBUG
   69 SRCS+=  ${DBSRC}
   70 opt_ddb.h: Makefile
   71         echo "#define DDB 1" > ${.TARGET}
   72 .else
   73 opt_ddb.h: Makefile
   74         echo -n > ${.TARGET}
   75 .endif
   76 
   77 # Machine-specific code such as sleep/wakeup
   78 SRCS+=  acpi_machdep.c acpi_wakecode.h acpi_wakeup.c
   79 .if ${MACHINE} == "i386"
   80 SRCS+=  madt.c
   81 .endif
   82 CLEANFILES+=    acpi_wakecode.h acpi_wakecode.o acpi_wakecode.bin ${DBSRC:.c=.o}
   83 
   84 acpi_wakecode.h: acpi_wakecode.S
   85         ${MAKE} -f ${.CURDIR}/../../../${MACHINE_ARCH}/acpica/Makefile \
   86                 MAKESRCPATH=${.CURDIR}/../../../${MACHINE_ARCH}/acpica
   87 
   88 .include <bsd.kmod.mk>

Cache object: 800f54e76d94697198358340ab2bece7


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