Edit

thodg/got/libexec/got-read-pack/Makefile

Branch :

  • Show log

    Commit

  • Author : Stefan Sperling
    Date : 2018-11-05 22:28:03
    Hash : f054b67a
    Message : remove object_idcache; use object_idset instead

  • libexec/got-read-pack/Makefile
  • .PATH:${.CURDIR}/../../lib
    
    PROG=		got-read-pack
    SRCS=		got-read-pack.c delta.c error.c inflate.c object_cache.c \
    		object_idset.c object_parse.c opentemp.c pack.c path.c \
    		privsep.c sha1.c
    
    CPPFLAGS = -I${.CURDIR}/../../include -I${.CURDIR}/../../lib
    LDADD = -lutil -lz
    DPADD = ${LIBZ} ${LIBUTIL}
    
    # For now, default to installing binary in ~/bin
    GROUP!=id -g -n
    install:
    	${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \
    	-m ${BINMODE} ${PROG} ${GOT_LIBEXECDIR}/${PROG}
    
    # Don't install man pages yet
    NOMAN = Yes
    
    .include <bsd.prog.mk>