Home | History | Annotate | Line # | Download | only in efi
      1  1.3  riastrad #	$NetBSD: Makefile,v 1.3 2025/03/02 00:03:41 riastradh Exp $
      2  1.1  christos 
      3  1.3  riastrad WARNS=9
      4  1.1  christos 
      5  1.1  christos .include <bsd.init.mk>
      6  1.1  christos 
      7  1.1  christos GPT=${NETBSDSRCDIR}/sbin/gpt
      8  1.1  christos 
      9  1.1  christos .PATH: ${GPT}
     10  1.1  christos 
     11  1.1  christos CFLAGS+=	-Wno-address-of-packed-member
     12  1.1  christos CPPFLAGS+=	-I${GPT}
     13  1.1  christos DPADD+= 	${LIBUTIL}
     14  1.1  christos LDADD+= 	-lutil
     15  1.1  christos 
     16  1.1  christos PROG=		efi
     17  1.1  christos MAN=		${PROG}.8
     18  1.1  christos 
     19  1.1  christos SRCS=		main.c
     20  1.1  christos SRCS+=		bootvar.c
     21  1.1  christos SRCS+=		certs.c
     22  1.1  christos SRCS+=		devpath.c
     23  1.1  christos SRCS+=		devpath1.c
     24  1.1  christos SRCS+=		devpath2.c
     25  1.1  christos SRCS+=		devpath3.c
     26  1.1  christos SRCS+=		devpath4.c
     27  1.1  christos SRCS+=		devpath5.c
     28  1.1  christos SRCS+=		efiio.c
     29  1.1  christos SRCS+=		getvars.c
     30  1.1  christos SRCS+=		gpt.c
     31  1.1  christos SRCS+=		gpt_uuid.c
     32  1.1  christos SRCS+=		gptsubr.c
     33  1.1  christos SRCS+=		map.c
     34  1.1  christos SRCS+=		setvar.c
     35  1.1  christos SRCS+=		showvar.c
     36  1.1  christos SRCS+=		utils.c
     37  1.1  christos 
     38  1.1  christos .include <bsd.prog.mk>
     39