freebsd-skq/usr.sbin/acpi/acpidb/Makefile

74 lines
2.1 KiB
Makefile
Raw Normal View History

# $FreeBSD$
PROG= acpidb
2005-11-01 22:44:08 +00:00
SRCS= acpidb.c
2012-02-16 22:59:29 +00:00
# components/debugger
2005-11-01 22:44:08 +00:00
SRCS+= dbcmds.c dbdisply.c dbexec.c dbfileio.c dbhistry.c \
2011-02-12 01:03:15 +00:00
dbinput.c dbmethod.c dbnames.c dbstats.c dbutils.c \
dbxface.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/disassembler
2012-11-20 21:01:59 +00:00
SRCS+= dmbuffer.c dmdeferred.c dmnames.c dmobject.c dmopcode.c \
dmresrc.c dmresrcl.c dmresrcl2.c dmresrcs.c dmutils.c \
dmwalk.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/dispatcher
2011-02-12 01:03:15 +00:00
SRCS+= dsargs.c dscontrol.c dsfield.c dsinit.c dsmethod.c \
dsmthdat.c dsobject.c dsopcode.c dsutils.c dswexec.c \
dswload.c dswload2.c dswscope.c dswstate.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/events
SRCS+= evevent.c evglock.c evgpe.c evgpeblk.c evgpeinit.c \
evgpeutil.c evmisc.c evregion.c evrgnini.c evsci.c \
evxface.c evxfevnt.c evxfregn.c
# components/executer
2010-03-05 21:39:16 +00:00
SRCS+= exconfig.c exconvrt.c excreate.c exdebug.c exdump.c \
exfield.c exfldio.c exmisc.c exmutex.c exnames.c \
exoparg1.c exoparg2.c exoparg3.c exoparg6.c exprep.c \
exregion.c exresnte.c exresolv.c exresop.c exstore.c \
exstoren.c exstorob.c exsystem.c exutils.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/hardware
SRCS+= hwacpi.c hwesleep.c hwgpe.c hwpci.c hwregs.c hwsleep.c \
hwvalid.c hwxface.c hwxfsleep.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/namespace
2005-11-01 22:44:08 +00:00
SRCS+= nsaccess.c nsalloc.c nsdump.c nseval.c nsinit.c \
2009-06-05 18:50:45 +00:00
nsload.c nsnames.c nsobject.c nsparse.c nspredef.c \
2009-11-16 21:47:12 +00:00
nsrepair.c nsrepair2.c nssearch.c nsutils.c nswalk.c \
nsxfeval.c nsxfname.c nsxfobj.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/parser
SRCS+= psargs.c psloop.c psopcode.c psparse.c psscope.c \
pstree.c psutils.c pswalk.c psxface.c
# components/os_specific/service_layers
2011-11-28 23:36:48 +00:00
SRCS+= osunixxf.c
2012-02-16 22:59:29 +00:00
# components/resources
2005-11-01 22:44:08 +00:00
SRCS+= rsaddr.c rscalc.c rscreate.c rsdump.c rsinfo.c \
rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c \
2011-11-28 23:36:48 +00:00
rsserial.c rsutils.c rsxface.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/tables
2012-07-11 23:18:35 +00:00
SRCS+= tbfadt.c tbfind.c tbinstal.c tbutils.c tbxface.c \
tbxfload.c
2005-11-01 22:44:08 +00:00
2012-02-16 22:59:29 +00:00
# components/utilities
2012-01-11 23:06:37 +00:00
SRCS+= utaddress.c utalloc.c utcache.c utcopy.c utdebug.c \
2012-07-11 23:18:35 +00:00
utdecode.c utdelete.c uteval.c utexcep.c utglobal.c \
utids.c utinit.c utlock.c utmath.c utmisc.c utmutex.c \
2012-01-11 23:06:37 +00:00
utobject.c utosi.c utresrc.c utstate.c uttrack.c \
2012-08-16 20:54:52 +00:00
utxface.c utxferror.c utxfinit.c
MAN= acpidb.8
WARNS?= 2
2009-06-05 18:50:45 +00:00
CFLAGS+= -DACPI_EXEC_APP -fno-strict-aliasing
DPADD= ${LIBPTHREAD}
LDADD= -lpthread
.include <bsd.prog.mk>