Blame


1 86c3caaf 2018-03-09 stsp .PATH:${.CURDIR}/../../lib
2 86c3caaf 2018-03-09 stsp
3 86c3caaf 2018-03-09 stsp PROG = worktree_test
4 eb77ee11 2018-07-08 stsp SRCS = worktree.c repository.c object.c object_idcache.c object_idset.c \
5 eb77ee11 2018-07-08 stsp opentemp.c path.c error.c reference.c sha1.c pack.c privsep.c delta.c \
6 63581804 2018-07-09 stsp inflate.c fileindex.c worktree_test.c
7 86c3caaf 2018-03-09 stsp
8 86c3caaf 2018-03-09 stsp CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
9 86c3caaf 2018-03-09 stsp LDADD = -lutil -lz
10 86c3caaf 2018-03-09 stsp DEBUG = -O0 -g
11 22eb8973 2018-03-12 stsp CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
12 fc79a48d 2018-07-09 stsp #CFLAGS += -DGOT_PACK_NO_MMAP
13 ccfe88e6 2018-07-12 stsp #CFLAGS += -DGOT_NO_OBJ_CACHE
14 86c3caaf 2018-03-09 stsp
15 86c3caaf 2018-03-09 stsp NOMAN = yes
16 86c3caaf 2018-03-09 stsp
17 86c3caaf 2018-03-09 stsp .include <bsd.regress.mk>