Makefile revision 1.14
11.14Sjnemeth# $NetBSD: Makefile,v 1.14 2015/11/03 02:19:24 jnemeth Exp $ 21.1Schristos# $FreeBSD: src/sbin/gpt/Makefile,v 1.7 2005/09/01 02:49:20 marcel Exp $ 31.1Schristos 41.1SchristosPROG= gpt 51.14SjnemethSRCS= add.c biosboot.c create.c destroy.c gpt.c header.c label.c map.c \ 61.11Schristos migrate.c recover.c remove.c resize.c resizedisk.c \ 71.12Schristos set.c show.c type.c unset.c gpt_uuid.c 81.1SchristosMAN= gpt.8 91.1Schristos 101.11Schristos.if (${HOSTPROG:U} == "") 111.11SchristosSRCS+= backup.c restore.c 121.2SchristosLDADD+= -lprop -lutil 131.2SchristosDPADD+= ${LIBPROP} ${LIBUTIL} 141.13Schristos 151.13Schristos.if ${USE_DRVCTL:Uno} == "yes" 161.13SchristosCPPFLAGS+=-DUSE_DRVCTL 171.13SchristosSRCS+=drvctl.c 181.13Schristos.else 191.13Schristos.PATH: ${.CURDIR}/../fsck 201.13SchristosCPPFLAGS+=-I${.CURDIR}/../fsck 211.13SchristosSRCS+=partutil.c 221.13Schristos.endif 231.11Schristos.endif 241.2Schristos 251.13Schristos 261.1Schristos.include <bsd.prog.mk> 27