Blame


1 9f7d7167 2018-04-29 stsp .PATH:${.CURDIR}/../lib
2 9f7d7167 2018-04-29 stsp
3 9f7d7167 2018-04-29 stsp PROG= tog
4 c35a7943 2018-07-12 stsp SRCS= tog.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 9e672c74 2019-03-11 stsp utf8.c inflate.c buf.c worklist.c rcsutil.c diff3.c \
9 563fca6e 2019-05-09 stsp lockfile.c deflate.c object_create.c
10 9f7d7167 2018-04-29 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 84451b3e 2018-07-10 stsp LDADD = -lpanel -lncursesw -lutil -lz -lpthread
14 9f7d7167 2018-04-29 stsp DPADD = ${LIBZ} ${LIBUTIL}
15 9f7d7167 2018-04-29 stsp
16 9f7d7167 2018-04-29 stsp # For now, default to installing binary in ~/bin
17 9f7d7167 2018-04-29 stsp GROUP!=id -g -n
18 9f7d7167 2018-04-29 stsp install:
19 9f7d7167 2018-04-29 stsp ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
20 9f7d7167 2018-04-29 stsp -m ${BINMODE} ${PROG} ${HOME}/bin/${PROG}
21 9f7d7167 2018-04-29 stsp
22 9f7d7167 2018-04-29 stsp # Don't install man pages yet
23 9f7d7167 2018-04-29 stsp NOMAN = Yes
24 9f7d7167 2018-04-29 stsp
25 9f7d7167 2018-04-29 stsp .include <bsd.prog.mk>