xref: /dflybsd-src/usr.sbin/acpi/acpihelp/Makefile (revision 2b57e6df2e02e023cc8defd76c1809243c99e460)
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
7IASLDIR=${.CURDIR}/../../../sys/contrib/dev/acpica/source/compiler
8
9.PATH:	${UTILDIR} ${IASLDIR}
10
11PROG=	acpihelp
12MAN=	acpihelp.8
13
14SRCS=	\
15	ahaml.c \
16	ahamlops.c \
17	ahasl.c \
18	ahaslkey.c \
19	ahaslops.c \
20	ahdecode.c \
21	ahgrammar.c \
22	ahids.c \
23	ahpredef.c \
24	ahmain.c \
25	ahtable.c \
26	ahuuids.c
27
28SRCS+=	\
29	getopt.c \
30	osunixxf.c \
31	utdebug.c \
32	utexcep.c \
33	utglobal.c \
34	uthex.c \
35	utmath.c \
36	utnonansi.c \
37	utpredef.c \
38	utuuid.c
39
40SRCS+=	\
41	aslmessages.c
42
43CFLAGS+= \
44	-DACPI_HELP_APP \
45	-I${UTILDIR}	\
46	-I${IASLDIR}
47
48.include <bsd.prog.mk>
49