1 # Id: Makefile,v 1.2 2000/07/14 18:16:29 iwasaki Exp 2 # $FreeBSD: src/usr.sbin/acpi/acpidump/Makefile,v 1.6 2001/10/22 17:25:25 iwasaki Exp $ 3 4 .if (${MACHINE} == "i386" || ${MACHINE} == "amd64") 5 PROG= acpidump 6 SRCS= acpi.c acpi_user.c asl_dump.c aml_dump.c acpidump.c 7 SRCS+= aml_parse.c aml_name.c aml_amlmem.c aml_memman.c aml_store.c \ 8 aml_obj.c aml_evalobj.c aml_common.c 9 10 CPPFLAGS+=-I${.CURDIR}/../amldb 11 .endif 12 13 MAN= acpidump.8 14 .include <bsd.prog.mk> 15 .PATH: ${.CURDIR}/../aml 16