diff options
Diffstat (limited to 'usr.sbin/acpi/acpidb/Makefile')
-rw-r--r-- | usr.sbin/acpi/acpidb/Makefile | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/usr.sbin/acpi/acpidb/Makefile b/usr.sbin/acpi/acpidb/Makefile index c08c70b..15d114d 100644 --- a/usr.sbin/acpi/acpidb/Makefile +++ b/usr.sbin/acpi/acpidb/Makefile @@ -3,10 +3,13 @@ PROG= acpidb SRCS= acpidb.c +# common +SRCS+= acgetline.c ahids.c ahuuids.c cmfsize.c + # components/debugger SRCS+= dbcmds.c dbconvert.c dbdisply.c dbexec.c dbfileio.c \ dbhistry.c dbinput.c dbmethod.c dbnames.c dbstats.c \ - dbutils.c dbxface.c + dbtest.c dbutils.c dbxface.c # components/disassembler SRCS+= dmbuffer.c dmdeferred.c dmnames.c dmobject.c dmopcode.c \ @@ -46,26 +49,27 @@ SRCS+= psargs.c psloop.c psobject.c psopcode.c psopinfo.c \ psparse.c psscope.c pstree.c psutils.c pswalk.c \ psxface.c -# components/os_specific/service_layers -SRCS+= osunixxf.c - # components/resources SRCS+= rsaddr.c rscalc.c rscreate.c rsdump.c rsdumpinfo.c \ rsinfo.c rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c \ rsserial.c rsutils.c rsxface.c # components/tables -SRCS+= tbfadt.c tbfind.c tbinstal.c tbprint.c tbutils.c \ - tbxface.c tbxfload.c +SRCS+= tbdata.c tbfadt.c tbfind.c tbinstal.c tbprint.c \ + tbutils.c tbxface.c tbxfload.c # components/utilities SRCS+= utaddress.c utalloc.c utbuffer.c utcache.c utcopy.c \ utdebug.c utdecode.c utdelete.c uterror.c uteval.c \ - utexcep.c utglobal.c utids.c utinit.c utlock.c utmath.c \ - utmisc.c utmutex.c utobject.c utosi.c utownerid.c \ - utpredef.c utresrc.c utstate.c utstring.c uttrack.c \ + utexcep.c utfileio.c utglobal.c uthex.c utids.c \ + utinit.c utlock.c utmath.c utmisc.c utmutex.c \ + utobject.c utosi.c utownerid.c utpredef.c utprint.c \ + utresrc.c utstate.c utstring.c uttrack.c utuuid.c \ utxface.c utxferror.c utxfinit.c +# os_specific/service_layers +SRCS+= oslibcfs.c osunixxf.c + MAN= acpidb.8 WARNS?= 3 |