Merge branch 'vendor/FILE'
[dragonfly.git] / usr.sbin / acpi / acpinames / Makefile
1 #
2 # acpinames - Load ACPI table and dump namespace. This is a subset
3 # of the AcpiExec functionality, it is intended to demonstrate
4 # the configurability of ACPICA.
5 #
6
7 UTILDIR=${.CURDIR}/../../../sys/contrib/dev/acpica/source/tools/acpinames
8
9 .PATH:  ${UTILDIR}
10
11 PROG=   acpinames
12 MAN=    acpinames.8
13
14 SRCS=   \
15         anmain.c \
16         anstubs.c \
17         antables.c
18
19 SRCS+=  \
20         cmfsize.c \
21         dbfileio.c \
22         dsfield.c \
23         dsmthdat.c \
24         dsobject.c \
25         dsutils.c \
26         dswload.c \
27         dswload2.c \
28         dswscope.c \
29         dswstate.c \
30         excreate.c \
31         exnames.c \
32         exresnte.c \
33         exresolv.c \
34         exutils.c \
35         getopt.c \
36         nsaccess.c \
37         nsalloc.c \
38         nsdump.c \
39         nsinit.c \
40         nsload.c \
41         nsnames.c \
42         nsobject.c \
43         nsparse.c \
44         nssearch.c \
45         nsutils.c \
46         nswalk.c \
47         nsxfeval.c \
48         nsxfname.c \
49         nsxfobj.c \
50         osunixxf.c \
51         psargs.c \
52         psloop.c \
53         psobject.c \
54         psopcode.c \
55         psopinfo.c \
56         psparse.c \
57         psscope.c \
58         pstree.c \
59         psutils.c \
60         pswalk.c \
61         psxface.c \
62         tbdata.c \
63         tbfadt.c \
64         tbfind.c \
65         tbinstal.c \
66         tbprint.c \
67         tbutils.c \
68         tbxface.c \
69         tbxfload.c \
70         tbxfroot.c \
71         utaddress.c \
72         utalloc.c \
73         utcache.c \
74         utdebug.c \
75         utdecode.c \
76         utdelete.c \
77         uterror.c \
78         utexcep.c \
79         utglobal.c \
80         utlock.c \
81         utmath.c \
82         utmisc.c \
83         utmutex.c \
84         utobject.c \
85         utosi.c \
86         utownerid.c \
87         utstate.c \
88         utstring.c \
89         utxface.c \
90         utxferror.c \
91         utxfinit.c
92
93 CFLAGS+= \
94         -DACPI_NAMES_APP \
95         -I${UTILDIR}
96
97 .include <bsd.prog.mk>