Deleted Added
full compact
Makefile (250838) Makefile (272444)
1# $FreeBSD: head/usr.sbin/acpi/acpidb/Makefile 250838 2013-05-20 23:52:49Z jkim $
1# $FreeBSD: head/usr.sbin/acpi/acpidb/Makefile 272444 2014-10-02 19:11:18Z jkim $
2
3PROG= acpidb
4SRCS= acpidb.c
5
2
3PROG= acpidb
4SRCS= acpidb.c
5
6# common
7SRCS+= acgetline.c ahids.c ahuuids.c cmfsize.c
8
6# components/debugger
7SRCS+= dbcmds.c dbconvert.c dbdisply.c dbexec.c dbfileio.c \
8 dbhistry.c dbinput.c dbmethod.c dbnames.c dbstats.c \
9# components/debugger
10SRCS+= dbcmds.c dbconvert.c dbdisply.c dbexec.c dbfileio.c \
11 dbhistry.c dbinput.c dbmethod.c dbnames.c dbstats.c \
9 dbutils.c dbxface.c
12 dbtest.c dbutils.c dbxface.c
10
11# components/disassembler
12SRCS+= dmbuffer.c dmdeferred.c dmnames.c dmobject.c dmopcode.c \
13 dmresrc.c dmresrcl.c dmresrcl2.c dmresrcs.c dmutils.c \
14 dmwalk.c
15
16# components/dispatcher
17SRCS+= dsargs.c dscontrol.c dsfield.c dsinit.c dsmethod.c \

--- 23 unchanged lines hidden (view full) ---

41 nssearch.c nsutils.c nswalk.c nsxfeval.c nsxfname.c \
42 nsxfobj.c
43
44# components/parser
45SRCS+= psargs.c psloop.c psobject.c psopcode.c psopinfo.c \
46 psparse.c psscope.c pstree.c psutils.c pswalk.c \
47 psxface.c
48
13
14# components/disassembler
15SRCS+= dmbuffer.c dmdeferred.c dmnames.c dmobject.c dmopcode.c \
16 dmresrc.c dmresrcl.c dmresrcl2.c dmresrcs.c dmutils.c \
17 dmwalk.c
18
19# components/dispatcher
20SRCS+= dsargs.c dscontrol.c dsfield.c dsinit.c dsmethod.c \

--- 23 unchanged lines hidden (view full) ---

44 nssearch.c nsutils.c nswalk.c nsxfeval.c nsxfname.c \
45 nsxfobj.c
46
47# components/parser
48SRCS+= psargs.c psloop.c psobject.c psopcode.c psopinfo.c \
49 psparse.c psscope.c pstree.c psutils.c pswalk.c \
50 psxface.c
51
49# components/os_specific/service_layers
50SRCS+= osunixxf.c
51
52# components/resources
53SRCS+= rsaddr.c rscalc.c rscreate.c rsdump.c rsdumpinfo.c \
54 rsinfo.c rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c \
55 rsserial.c rsutils.c rsxface.c
56
57# components/tables
52# components/resources
53SRCS+= rsaddr.c rscalc.c rscreate.c rsdump.c rsdumpinfo.c \
54 rsinfo.c rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c \
55 rsserial.c rsutils.c rsxface.c
56
57# components/tables
58SRCS+= tbfadt.c tbfind.c tbinstal.c tbprint.c tbutils.c \
59 tbxface.c tbxfload.c
58SRCS+= tbdata.c tbfadt.c tbfind.c tbinstal.c tbprint.c \
59 tbutils.c tbxface.c tbxfload.c
60
61# components/utilities
62SRCS+= utaddress.c utalloc.c utbuffer.c utcache.c utcopy.c \
63 utdebug.c utdecode.c utdelete.c uterror.c uteval.c \
60
61# components/utilities
62SRCS+= utaddress.c utalloc.c utbuffer.c utcache.c utcopy.c \
63 utdebug.c utdecode.c utdelete.c uterror.c uteval.c \
64 utexcep.c utglobal.c utids.c utinit.c utlock.c utmath.c \
65 utmisc.c utmutex.c utobject.c utosi.c utownerid.c \
66 utpredef.c utresrc.c utstate.c utstring.c uttrack.c \
64 utexcep.c utfileio.c utglobal.c uthex.c utids.c \
65 utinit.c utlock.c utmath.c utmisc.c utmutex.c \
66 utobject.c utosi.c utownerid.c utpredef.c utprint.c \
67 utresrc.c utstate.c utstring.c uttrack.c utuuid.c \
67 utxface.c utxferror.c utxfinit.c
68
68 utxface.c utxferror.c utxfinit.c
69
70# os_specific/service_layers
71SRCS+= oslibcfs.c osunixxf.c
72
69MAN= acpidb.8
70WARNS?= 3
71
72CFLAGS+= -DACPI_EXEC_APP -fno-strict-aliasing
73DPADD= ${LIBPTHREAD}
74LDADD= -lpthread
75
76.include <bsd.prog.mk>
73MAN= acpidb.8
74WARNS?= 3
75
76CFLAGS+= -DACPI_EXEC_APP -fno-strict-aliasing
77DPADD= ${LIBPTHREAD}
78LDADD= -lpthread
79
80.include <bsd.prog.mk>