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