13 lines
349 B
Makefile
13 lines
349 B
Makefile
# rules to make a distribution tarball from a git repo
|
|
# Copyright 2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
GITREF?= HEAD
|
|
DISTPREFIX?= ${NAME}-${VERSION}
|
|
DISTFILE?= ${DISTPREFIX}.tar.bz2
|
|
|
|
CLEANFILES+= ${DISTFILE}
|
|
|
|
dist:
|
|
git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
|