Blame


1 28714985 2018-11-17 stsp .PATH:${.CURDIR}/../../lib
2 28714985 2018-11-17 stsp
3 28714985 2018-11-17 stsp PROG= got-read-tag
4 28714985 2018-11-17 stsp SRCS= got-read-tag.c delta.c error.c inflate.c object_parse.c \
5 28714985 2018-11-17 stsp privsep.c sha1.c
6 28714985 2018-11-17 stsp
7 28714985 2018-11-17 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
8 28714985 2018-11-17 stsp LDADD = -lutil -lz
9 28714985 2018-11-17 stsp DPADD = ${LIBZ} ${LIBUTIL}
10 28714985 2018-11-17 stsp
11 28714985 2018-11-17 stsp # For now, default to installing binary in ~/bin
12 28714985 2018-11-17 stsp GROUP!=id -g -n
13 28714985 2018-11-17 stsp install:
14 28714985 2018-11-17 stsp ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
15 28714985 2018-11-17 stsp -m ${BINMODE} ${PROG} ${GOT_LIBEXECDIR}/${PROG}
16 28714985 2018-11-17 stsp
17 28714985 2018-11-17 stsp # Don't install man pages yet
18 28714985 2018-11-17 stsp NOMAN = Yes
19 28714985 2018-11-17 stsp
20 28714985 2018-11-17 stsp .include <bsd.prog.mk>