summaryrefslogtreecommitdiff
path: root/mk/dist.mk
blob: 1d3669da5a6a5c00f506cce6b81b7abeb138a6eb (plain)
1
2
3
4
5
6
7
8
9
10
11
# rules to make a distribution tarball from a git repo
# Copyright 2008 Roy Marples <roy@marples.name>

GITREF?=	HEAD
DISTPREFIX?=	${PROG}-${VERSION}
DISTFILE?=	${DISTPREFIX}.tar.bz2

CLEANFILES+=	${DISTFILE}

dist:
	git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}