diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-24 22:56:36 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-24 22:56:36 +0000 |
commit | df5cf721605327427e4c033f75fd0875486c109f (patch) | |
tree | 2ddfca124b5fd80febc008fa742d20e13f968b96 /Makefile | |
parent | 44cbbf18b946030d7445a324aa42f624031b0639 (diff) | |
download | qemu-df5cf721605327427e4c033f75fd0875486c109f.zip |
Make the tarball's VERSION part overridable from make invocation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2356 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -128,7 +128,8 @@ dvi: qemu-doc.dvi qemu-tech.dvi html: qemu-doc.html qemu-tech.html -FILE=qemu-$(shell cat VERSION) +VERSION ?= $(shell cat VERSION) +FILE = qemu-$(VERSION) # tar release (use 'make -k tar' on a checkouted tree) tar: |