Blame


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