Sync ACPICA with Intel's version 20150515.
[dragonfly.git] / usr.sbin / acpi / acpihelp / Makefile
1 #
2 # acpihelp - ACPI Help utility. Displays ASL operator syntax and
3 # information about ACPI predefined names.
4 #
5
6 UTILDIR=${.CURDIR}/../../../sys/contrib/dev/acpica/source/tools/acpihelp
7
8 .PATH:  ${UTILDIR}
9
10 PROG=   acpihelp
11 MAN=    acpihelp.8
12
13 SRCS=   \
14         ahamlops.c \
15         ahaslkey.c \
16         ahaslops.c \
17         ahdecode.c \
18         ahids.c \
19         ahpredef.c \
20         ahmain.c \
21         ahtable.c \
22         ahuuids.c
23
24 SRCS+=  \
25         getopt.c \
26         oslibcfs.c \
27         osunixxf.c \
28         utdebug.c \
29         utexcep.c \
30         utglobal.c \
31         uthex.c \
32         utmath.c \
33         utpredef.c \
34         utprint.c \
35         utuuid.c
36
37 CFLAGS+= \
38         -DACPI_HELP_APP \
39         -I${UTILDIR}
40
41 .include <bsd.prog.mk>