Edit

thodg/got/regress/repository/Makefile

Branch :

  • Show log

    Commit

  • Author : Stefan Sperling
    Date : 2018-09-06 17:33:13
    Hash : a440fac0
    Message : move object parsing code into a separate file

  • regress/repository/Makefile
  • .PATH:${.CURDIR}/../../lib
    
    PROG = repository_test
    SRCS = path.c repository.c error.c reference.c object.c object_idcache.c \
    	object_idset.c object_parse.c opentemp.c sha1.c diff.c diffreg.c \
    	pack.c privsep.c delta.c fileindex.c worktree.c inflate.c \
    	repository_test.c
    
    CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
    LDADD = -lutil -lz
    DEBUG = -O0 -g
    CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
    #CFLAGS += -DGOT_PACK_NO_MMAP
    #CFLAGS += -DGOT_NO_OBJ_CACHE
    
    NOMAN = yes
    
    .include <bsd.regress.mk>