Home | History | Annotate | Line # | Download | only in efi
Makefile revision 1.1
      1  1.1  christos #	$NetBSD: Makefile,v 1.1 2025/02/24 13:47:55 christos Exp $
      2  1.1  christos 
      3  1.1  christos 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 LINTFLAGS.certs.c += -X177
     20  1.1  christos LINTFLAGS.devpath3.c += -X177
     21  1.1  christos LINTFLAGS.devpath4.c += -X177
     22  1.1  christos 
     23  1.1  christos SRCS=		main.c
     24  1.1  christos SRCS+=		bootvar.c
     25  1.1  christos SRCS+=		certs.c
     26  1.1  christos SRCS+=		devpath.c
     27  1.1  christos SRCS+=		devpath1.c
     28  1.1  christos SRCS+=		devpath2.c
     29  1.1  christos SRCS+=		devpath3.c
     30  1.1  christos SRCS+=		devpath4.c
     31  1.1  christos SRCS+=		devpath5.c
     32  1.1  christos SRCS+=		efiio.c
     33  1.1  christos SRCS+=		getvars.c
     34  1.1  christos SRCS+=		gpt.c
     35  1.1  christos SRCS+=		gpt_uuid.c
     36  1.1  christos SRCS+=		gptsubr.c
     37  1.1  christos SRCS+=		map.c
     38  1.1  christos SRCS+=		setvar.c
     39  1.1  christos SRCS+=		showvar.c
     40  1.1  christos SRCS+=		utils.c
     41  1.1  christos 
     42  1.1  christos .include <bsd.prog.mk>
     43