Blob
1 .PATH:${.CURDIR}/../lib2 .PATH:${.CURDIR}/../gotd4 .include "../got-version.mk"6 .if ${GOT_RELEASE} == "Yes"7 BINDIR ?= ${PREFIX}/bin8 .endif10 PROG= gitwrapper12 SRCS= gitwrapper.c parse.y log.c dial.c path.c error.c \13 reference_parse.c hash.c object_qid.c15 CLEANFILES = parse.h17 MAN = ${PROG}.119 CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib -I${.CURDIR}/../gotd21 .if ${GOT_RELEASE} != "Yes"22 NOMAN = Yes23 .endif25 realinstall:26 ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \27 -m ${BINMODE} ${PROG} ${BINDIR}/${PROG}29 .include <bsd.prog.mk>