Edit

thodg/got/regress/repository/Makefile

Branch :

  • Show log

    Commit

  • Author : Martin Pieuchot
    Date : 2018-01-26 13:58:40
    Hash : 322260e1
    Message : Get rid of xmalloc.{c,h}. malloc(3) & pread(3) errors will now be reported as GOT_ERR_NO_MEM. This does not improve the numbers of leaks in diffreg.c

  • regress/repository/Makefile
  • .PATH:${.CURDIR}/../../lib
    
    PROG = repository_test
    SRCS = path.c repository.c error.c refs.c object.c sha1.c diff.c \
    	diffreg.c pack.c delta.c repository_test.c
    
    CPPFLAGS = -I${.CURDIR}/../../include
    LDADD = -lutil -lz
    DEBUG = -O0 -g
    CFLAGS += -Werror
    
    NOMAN = yes
    
    .include <bsd.regress.mk>