xref: /dragonfly/usr.sbin/acpi/acpihelp/Makefile (revision 02318f07)
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	ahgrammar.c \
19	ahids.c \
20	ahpredef.c \
21	ahmain.c \
22	ahtable.c \
23	ahuuids.c
24
25SRCS+=	\
26	getopt.c \
27	osunixxf.c \
28	utdebug.c \
29	utexcep.c \
30	utglobal.c \
31	uthex.c \
32	utmath.c \
33	utnonansi.c \
34	utpredef.c \
35	utuuid.c
36
37CFLAGS+= \
38	-DACPI_HELP_APP \
39	-I${UTILDIR}
40
41.include <bsd.prog.mk>
42