Edit

thodg/got/libexec/got-read-object/Makefile

Branch :

  • Show log

    Commit

  • Author : Stefan Sperling
    Date : 2019-02-05 15:19:24
    Hash : f5d3d7af
    Message : use path lists to sort dirent, tree object, and file index entries

  • libexec/got-read-object/Makefile
  • .PATH:${.CURDIR}/../../lib
    
    PROG=		got-read-object
    SRCS=		got-read-object.c delta.c error.c inflate.c object_parse.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>