Home | History | Annotate | Line # | Download | only in gpt
Makefile revision 1.8.2.1
      1  1.8.2.1       snj # $NetBSD: Makefile,v 1.8.2.1 2015/06/02 19:49:38 snj 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.1  christos PROG=	gpt
      5  1.8.2.1       snj SRCS=	add.c biosboot.c create.c destroy.c gpt.c label.c map.c \
      6  1.8.2.1       snj 	migrate.c recover.c remove.c resize.c resizedisk.c \
      7  1.8.2.1       snj 	set.c show.c type.c unset.c gpt_uuid.c
      8      1.1  christos MAN=	gpt.8
      9      1.1  christos 
     10  1.8.2.1       snj .if (${HOSTPROG:U} == "")
     11  1.8.2.1       snj SRCS+= backup.c restore.c
     12      1.2  christos LDADD+=	-lprop -lutil
     13      1.2  christos DPADD+= ${LIBPROP} ${LIBUTIL}
     14      1.2  christos 
     15  1.8.2.1       snj .if ${USE_DRVCTL:Uno} == "yes"
     16  1.8.2.1       snj CPPFLAGS+=-DUSE_DRVCTL
     17  1.8.2.1       snj SRCS+=drvctl.c
     18  1.8.2.1       snj .else
     19  1.8.2.1       snj .PATH: ${.CURDIR}/../fsck
     20  1.8.2.1       snj CPPFLAGS+=-I${.CURDIR}/../fsck
     21  1.8.2.1       snj SRCS+=partutil.c
     22  1.8.2.1       snj .endif
     23  1.8.2.1       snj .endif
     24  1.8.2.1       snj 
     25  1.8.2.1       snj 
     26      1.1  christos .include <bsd.prog.mk>
     27