Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 9421dd5c43df96639fd86598472625cb3d27835a (plain)
1
2
3
4
5
6
7
8
VERSION = $(shell grep "^Version:" deployment.spec | sed 's/^Version: *//')

all:

dist:
	git archive --prefix=deployment-$(VERSION)/ HEAD | gzip > deployment-$(VERSION).tar.gz

.PHONY: dist