Blame


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