Home | History | Annotate | Line # | Download | only in gpt
Makefile revision 1.18.16.1
      1  1.18.16.1    martin # $NetBSD: Makefile,v 1.18.16.1 2020/04/13 08:03:20 martin Exp $
      2        1.1  christos # $FreeBSD: src/sbin/gpt/Makefile,v 1.7 2005/09/01 02:49:20 marcel Exp $
      3        1.1  christos 
      4       1.17  christos .include <bsd.own.mk>
      5       1.17  christos 
      6       1.18  christos WARNS=6
      7        1.1  christos PROG=	gpt
      8       1.14   jnemeth SRCS=	add.c biosboot.c create.c destroy.c gpt.c header.c label.c map.c \
      9       1.16  christos 	main.c migrate.c recover.c remove.c resize.c resizedisk.c \
     10  1.18.16.1    martin 	set.c show.c type.c unset.c gpt_uuid.c uuid.c
     11        1.1  christos MAN=	gpt.8
     12        1.1  christos 
     13       1.17  christos #LINKS=  ${BINDIR}/gpt ${BINDIR}/gptlabel
     14       1.17  christos #MLINKS= gpt.8 gptlabel.8
     15       1.17  christos 
     16       1.11  christos .if (${HOSTPROG:U} == "")
     17       1.11  christos SRCS+= backup.c restore.c
     18        1.2  christos LDADD+=	-lprop -lutil
     19        1.2  christos DPADD+= ${LIBPROP} ${LIBUTIL}
     20       1.11  christos .endif
     21        1.2  christos 
     22        1.1  christos .include <bsd.prog.mk>
     23