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 c35a7943 2018-07-12 stsp diffreg.c error.c fileindex.c object.c object_idcache.c \
6 c35a7943 2018-07-12 stsp object_idset.c opentemp.c path.c pack.c privsep.c \
7 c35a7943 2018-07-12 stsp reference.c repository.c sha1.c worktree.c utf8.c inflate.c
8 9f7d7167 2018-04-29 stsp
9 9f7d7167 2018-04-29 stsp CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib
10 84451b3e 2018-07-10 stsp LDADD = -lpanel -lncursesw -lutil -lz -lpthread
11 9f7d7167 2018-04-29 stsp DPADD = ${LIBZ} ${LIBUTIL}
12 9f7d7167 2018-04-29 stsp .if defined(PROFILE)
13 9f7d7167 2018-04-29 stsp CC = gcc
14 9f7d7167 2018-04-29 stsp CPPFLAGS += -DPROFILE
15 9f7d7167 2018-04-29 stsp DEBUG = -O0 -pg
16 9f7d7167 2018-04-29 stsp .else
17 9f7d7167 2018-04-29 stsp DEBUG = -O0 -g
18 9f7d7167 2018-04-29 stsp .endif
19 9f7d7167 2018-04-29 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
20 29779489 2018-07-12 stsp #CFLAGS += -DGOT_PACK_NO_MMAP
21 e79f468e 2018-07-13 stsp #CFLAGS += -DGOT_NO_OBJ_CACHE
22 9f7d7167 2018-04-29 stsp
23 9f7d7167 2018-04-29 stsp # For now, default to installing binary in ~/bin
24 9f7d7167 2018-04-29 stsp GROUP!=id -g -n
25 9f7d7167 2018-04-29 stsp install:
26 9f7d7167 2018-04-29 stsp ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
27 9f7d7167 2018-04-29 stsp -m ${BINMODE} ${PROG} ${HOME}/bin/${PROG}
28 9f7d7167 2018-04-29 stsp
29 9f7d7167 2018-04-29 stsp # Don't install man pages yet
30 9f7d7167 2018-04-29 stsp NOMAN = Yes
31 9f7d7167 2018-04-29 stsp
32 9f7d7167 2018-04-29 stsp .include <bsd.prog.mk>