Makefile revision 1.17
11.17Schristos# $NetBSD: Makefile,v 1.17 2015/12/01 09:05:33 christos 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.1SchristosPROG= gpt 71.14SjnemethSRCS= add.c biosboot.c create.c destroy.c gpt.c header.c label.c map.c \ 81.16Schristos main.c migrate.c recover.c remove.c resize.c resizedisk.c \ 91.12Schristos set.c show.c type.c unset.c gpt_uuid.c 101.1SchristosMAN= gpt.8 111.1Schristos 121.17Schristos#LINKS= ${BINDIR}/gpt ${BINDIR}/gptlabel 131.17Schristos#MLINKS= gpt.8 gptlabel.8 141.17Schristos 151.11Schristos.if (${HOSTPROG:U} == "") 161.11SchristosSRCS+= backup.c restore.c 171.2SchristosLDADD+= -lprop -lutil 181.2SchristosDPADD+= ${LIBPROP} ${LIBUTIL} 191.11Schristos.endif 201.2Schristos 211.1Schristos.include <bsd.prog.mk> 22