1 1.8 jmcneill # $NetBSD: Makefile,v 1.8 2020/09/12 15:25:42 jmcneill Exp $ 2 1.1 christos # Id: Makefile,v 1.5 2000/07/14 18:16:30 iwasaki Exp 3 1.1 christos # $FreeBSD: src/usr.sbin/acpi/amldb/Makefile,v 1.7 2001/10/22 17:25:32 iwasaki Exp $ 4 1.1 christos 5 1.8 jmcneill .include <bsd.init.mk> 6 1.8 jmcneill 7 1.8 jmcneill .if ${HAVE_ACPI:Uno} == "yes" 8 1.1 christos PROG= amldb 9 1.1 christos SRCS= amldb.c debug.c region.c 10 1.1 christos SRCS+= aml_parse.c aml_name.c aml_amlmem.c aml_memman.c aml_store.c \ 11 1.1 christos aml_obj.c aml_evalobj.c aml_common.c 12 1.1 christos 13 1.4 christos CPPFLAGS+= -I${.CURDIR} -D_KERNTYPES 14 1.2 christos .endif 15 1.2 christos 16 1.2 christos MAN= amldb.8 17 1.1 christos 18 1.6 mrg COPTS.aml_name.c+= ${GCC_NO_STRINGOP_TRUNCATION} 19 1.6 mrg 20 1.1 christos .include <bsd.prog.mk> 21 1.1 christos .PATH: ${.CURDIR}/../aml 22