Blame


1 f42b1b34 2018-03-12 stsp .PATH:${.CURDIR}/../lib
2 5c860e29 2018-03-12 stsp
3 5c860e29 2018-03-12 stsp PROG= got
4 c35a7943 2018-07-12 stsp SRCS= got.c blame.c commit_graph.c delta.c diff.c diffoffset.c \
5 6bef87be 2018-09-11 stsp diffreg.c error.c fileindex.c object.c object_cache.c \
6 25a58941 2019-01-08 stsp object_idset.c object_parse.c opentemp.c path.c pack.c \
7 25a58941 2019-01-08 stsp privsep.c reference.c repository.c sha1.c worktree.c \
8 c4296144 2019-05-09 stsp inflate.c buf.c worklist.c rcsutil.c diff3.c lockfile.c \
9 c4296144 2019-05-09 stsp deflate.c object_create.c
10 5c860e29 2018-03-12 stsp
11 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib \
12 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
13 f42b1b34 2018-03-12 stsp LDADD = -lutil -lz
14 f42b1b34 2018-03-12 stsp DPADD = ${LIBZ} ${LIBUTIL}
15 5c860e29 2018-03-12 stsp
16 f42b1b34 2018-03-12 stsp # For now, default to installing binary in ~/bin
17 8b90f09e 2018-03-12 stsp GROUP!=id -g -n
18 f42b1b34 2018-03-12 stsp install:
19 8b90f09e 2018-03-12 stsp ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
20 f42b1b34 2018-03-12 stsp -m ${BINMODE} ${PROG} ${HOME}/bin/${PROG}
21 5c860e29 2018-03-12 stsp
22 f42b1b34 2018-03-12 stsp # Don't install man pages yet
23 f42b1b34 2018-03-12 stsp NOMAN = Yes
24 f42b1b34 2018-03-12 stsp
25 5c860e29 2018-03-12 stsp .include <bsd.prog.mk>