21c34dbb1d
are different than than *bsd ones, and others might not have it at all.
17 lines
451 B
Makefile
17 lines
451 B
Makefile
# $NetBSD: Makefile,v 1.12 2014/09/30 17:59:59 christos Exp $
|
|
# $FreeBSD: src/sbin/gpt/Makefile,v 1.7 2005/09/01 02:49:20 marcel Exp $
|
|
|
|
PROG= gpt
|
|
SRCS= add.c biosboot.c create.c destroy.c gpt.c label.c map.c \
|
|
migrate.c recover.c remove.c resize.c resizedisk.c \
|
|
set.c show.c type.c unset.c gpt_uuid.c
|
|
MAN= gpt.8
|
|
|
|
.if (${HOSTPROG:U} == "")
|
|
SRCS+= backup.c restore.c
|
|
LDADD+= -lprop -lutil
|
|
DPADD+= ${LIBPROP} ${LIBUTIL}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|