Hash :
e79f468e
Author :
Date :
2018-07-13T11:18:05
.PATH:${.CURDIR}/../lib
PROG= tog
SRCS= tog.c blame.c commit_graph.c delta.c diff.c diffoffset.c \
diffreg.c error.c fileindex.c object.c object_idcache.c \
object_idset.c opentemp.c path.c pack.c privsep.c \
reference.c repository.c sha1.c worktree.c utf8.c inflate.c
CPPFLAGS = -I${.CURDIR}/../include -I${.CURDIR}/../lib
LDADD = -lpanel -lncursesw -lutil -lz -lpthread
DPADD = ${LIBZ} ${LIBUTIL}
.if defined(PROFILE)
CC = gcc
CPPFLAGS += -DPROFILE
DEBUG = -O0 -pg
.else
DEBUG = -O0 -g
.endif
CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
#CFLAGS += -DGOT_PACK_NO_MMAP
#CFLAGS += -DGOT_NO_OBJ_CACHE
# For now, default to installing binary in ~/bin
GROUP!=id -g -n
install:
${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
-m ${BINMODE} ${PROG} ${HOME}/bin/${PROG}
# Don't install man pages yet
NOMAN = Yes
.include <bsd.prog.mk>