xref: /dragonfly/usr.sbin/acpi/acpihelp/Makefile (revision 896f2e3a)
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	ahtable.c \
22	ahuuids.c
23
24SRCS+=	\
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
37CFLAGS+= \
38	-DACPI_HELP_APP \
39	-I${UTILDIR}
40
41.include <bsd.prog.mk>
42