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

72 lines
2.0 KiB
Makefile
Raw Normal View History

# $FreeBSD$
PROG= acpidb
2005-11-01 22:44:08 +00:00
SRCS= acpidb.c
# debugger
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
# disassembler
SRCS+= dmbuffer.c dmnames.c dmobject.c dmopcode.c dmresrc.c \
2011-11-28 23:36:48 +00:00
dmresrcl.c dmresrcl2.c dmresrcs.c dmutils.c dmwalk.c
2005-11-01 22:44:08 +00:00
# events
2011-04-15 18:34:27 +00:00
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
2005-11-01 22:44:08 +00:00
# hardware
2010-09-16 20:08:00 +00:00
SRCS+= hwacpi.c hwgpe.c hwpci.c hwregs.c hwsleep.c hwvalid.c \
hwxface.c
2005-11-01 22:44:08 +00:00
# interpreter/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
# interpreter/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
# interpreter/parser
SRCS+= psargs.c psloop.c psopcode.c psparse.c psscope.c \
pstree.c psutils.c pswalk.c psxface.c
# namespace
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
2011-11-28 23:36:48 +00:00
# os_specific/service_layers
SRCS+= osunixxf.c
2005-11-01 22:44:08 +00:00
# resources
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
# tables
SRCS+= tbfadt.c tbfind.c tbinstal.c tbutils.c tbxface.c
2005-11-01 22:44:08 +00:00
# utilities
2012-01-11 23:06:37 +00:00
SRCS+= utaddress.c utalloc.c utcache.c utcopy.c utdebug.c \
utdecode.c utdelete.c uteval.c utglobal.c utids.c \
utinit.c utlock.c utmath.c utmisc.c utmutex.c \
utobject.c utosi.c utresrc.c utstate.c uttrack.c \
utxface.c utxferror.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>