11.19Sjnemeth# $NetBSD: Makefile,v 1.19 2019/06/25 04:53:40 jnemeth Exp $ 21.1Schristos# $FreeBSD: src/sbin/gpt/Makefile,v 1.7 2005/09/01 02:49:20 marcel Exp $ 31.1Schristos 41.17Schristos.include <bsd.own.mk> 51.17Schristos 61.18SchristosWARNS=6 71.1SchristosPROG= gpt 81.14SjnemethSRCS= add.c biosboot.c create.c destroy.c gpt.c header.c label.c map.c \ 91.16Schristos main.c migrate.c recover.c remove.c resize.c resizedisk.c \ 101.19Sjnemeth set.c show.c type.c unset.c gpt_uuid.c uuid.c 111.1SchristosMAN= gpt.8 121.1Schristos 131.17Schristos#LINKS= ${BINDIR}/gpt ${BINDIR}/gptlabel 141.17Schristos#MLINKS= gpt.8 gptlabel.8 151.17Schristos 161.11Schristos.if (${HOSTPROG:U} == "") 171.11SchristosSRCS+= backup.c restore.c 181.2SchristosLDADD+= -lprop -lutil 191.2SchristosDPADD+= ${LIBPROP} ${LIBUTIL} 201.11Schristos.endif 211.2Schristos 221.1Schristos.include <bsd.prog.mk> 23