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 6bef87be 2018-09-11 stsp object_idcache.c object_idset.c object_parse.c opentemp.c \
7 6bef87be 2018-09-11 stsp path.c pack.c privsep.c reference.c repository.c sha1.c \
8 6bef87be 2018-09-11 stsp worktree.c utf8.c inflate.c
9 9f7d7167 2018-04-29 stsp
10 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib \
11 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
12 84451b3e 2018-07-10 stsp LDADD = -lpanel -lncursesw -lutil -lz -lpthread
13 9f7d7167 2018-04-29 stsp DPADD = ${LIBZ} ${LIBUTIL}
14 9f7d7167 2018-04-29 stsp
15 9f7d7167 2018-04-29 stsp # For now, default to installing binary in ~/bin
16 9f7d7167 2018-04-29 stsp GROUP!=id -g -n
17 9f7d7167 2018-04-29 stsp install:
18 9f7d7167 2018-04-29 stsp ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
19 9f7d7167 2018-04-29 stsp -m ${BINMODE} ${PROG} ${HOME}/bin/${PROG}
20 9f7d7167 2018-04-29 stsp
21 9f7d7167 2018-04-29 stsp # Don't install man pages yet
22 9f7d7167 2018-04-29 stsp NOMAN = Yes
23 9f7d7167 2018-04-29 stsp
24 9f7d7167 2018-04-29 stsp .include <bsd.prog.mk>