summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-08-23 14:21:40 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2009-08-23 14:21:40 +0100
commit535ade0e56c99ac87782886395378eea92013c6f (patch)
treeff823ec7c77d0353591c4c044cd519ff821ad384
parentfee24dc2b0f62103683e6ce242a44c7306a5fb1d (diff)
Makefile: untar snapshot into named directory
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 495d5ae..58c93a3 100644
--- a/Makefile
+++ b/Makefile
@@ -29,16 +29,17 @@ RELEASE_UPLOAD_DIR = $(RELEASE_UPLOAD_BASE)/$(RELEASE_OR_SNAPSHOT)s
RELEASE_URL_BASE = http://cairographics.org/$(RELEASE_OR_SNAPSHOT)s
RELEASE_ANNOUNCE_LIST = cairo-announce@cairographics.org
-snapshots = snapshots
-tar_file = $(snapshots)/cairo-traces-$(shell date '+%Y%m%d')-$(shell git rev-parse HEAD | cut -c 1-6).tar.gz
-sha1_file = $(tar_file).sha1
-gpg_file = $(sha1_file).asc
+snapshots := snapshots
+snapshot_name := $(shell date '+%Y%m%d')-$(shell git rev-parse HEAD | cut -c 1-6)
+tar_file := $(snapshots)/cairo-traces-$(snapshot_name).tar.gz
+sha1_file := $(tar_file).sha1
+gpg_file := $(sha1_file).asc
DIST := Makefile README $(wildcard *.c) $(ALL_LZMA)
$(tar_file): $(DIST)
@mkdir -p $(snapshots)
@echo Generating snapshot tarball: $(tar_file)
- @tar $(TAR_OPTIONS) --transform 's#^#cairo-traces/#' -czvf $(tar_file) $(DIST)
+ @tar $(TAR_OPTIONS) --transform 's#^#cairo-traces-$(snapshot_name)/#' -czvf $(tar_file) $(DIST)
$(sha1_file): $(tar_file)
sha1sum $^ > $@