Blob
1 .PATH:${.CURDIR}/../lib ${.CURDIR}/../gotd3 .include "../got-version.mk"5 PROG= gotctl6 SRCS= gotctl.c error.c imsg.c pollfd.c sha1.c8 MAN = ${PROG}.810 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR}/../gotd12 .if defined(PROFILE)13 LDADD = -lutil_p -lz_p -lm_p -lc_p -levent_p14 .else15 LDADD = -lutil -lz -lm -levent16 .endif17 DPADD = ${LIBZ} ${LIBUTIL}19 .if ${GOT_RELEASE} != "Yes"20 NOMAN = Yes21 .else22 BINDIR = ${PREFIX}/sbin23 .endif25 realinstall:26 ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \27 -m ${BINMODE} ${PROG} ${BINDIR}/${PROG}29 .include <bsd.prog.mk>