Blame


1 4027f31a 2017-11-04 stsp .PATH:${.CURDIR}/../../lib
2 4027f31a 2017-11-04 stsp
3 4027f31a 2017-11-04 stsp PROG = repository_test
4 eb77ee11 2018-07-08 stsp SRCS = path.c repository.c error.c reference.c object.c object_idcache.c \
5 a440fac0 2018-09-06 stsp object_idset.c object_parse.c opentemp.c sha1.c diff.c diffreg.c \
6 a440fac0 2018-09-06 stsp pack.c privsep.c delta.c fileindex.c worktree.c inflate.c \
7 a440fac0 2018-09-06 stsp repository_test.c
8 4027f31a 2017-11-04 stsp
9 ad242220 2018-09-08 stsp GOT_LIBEXECDIR = ${HOME}/bin
10 ad242220 2018-09-08 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib \
11 ad242220 2018-09-08 stsp -DGOT_LIBEXECDIR=${GOT_LIBEXECDIR}
12 ab9a70b2 2017-11-06 stsp LDADD = -lutil -lz
13 b82eb359 2017-12-01 stsp DEBUG = -O0 -g
14 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
15 fc79a48d 2018-07-09 stsp #CFLAGS += -DGOT_PACK_NO_MMAP
16 ccfe88e6 2018-07-12 stsp #CFLAGS += -DGOT_NO_OBJ_CACHE
17 4027f31a 2017-11-04 stsp
18 4027f31a 2017-11-04 stsp NOMAN = yes
19 4027f31a 2017-11-04 stsp
20 4027f31a 2017-11-04 stsp .include <bsd.regress.mk>