We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 67c3b9bCopy full SHA for 67c3b9b
Makefile
@@ -0,0 +1,29 @@
1
+#
2
+# $Id$
3
4
+
5
+SVNHOME=$(shell svn info | grep "^URL" | cut -f2- -d:)
6
+PROJECT=virtualenvwrapper
7
+VERSION=$(shell basename $(SVNHOME))
8
+RELEASE=$(PROJECT)-$(VERSION)
9
10
+info:
11
+ SVNHOME=$(SVNHOME)
12
+ PROJECT=$(PROJECT)
13
+ VERSION=$(VERSION)
14
+ RELEASE=$(RELEASE)
15
16
+package: dist export
17
+ (rm -f dist/$(RELEASE).zip)
18
+ (cd dist/; tar zcvf $(RELEASE).tar.gz $(RELEASE))
19
+ mv dist/*.tar.gz ~/Desktop/
20
21
+dist:
22
+ mkdir -p dist
23
24
25
+# Dump a version that does not include .svn directories.
26
27
+export:
28
+ rm -rf dist/$(RELEASE)
29
+ (cd dist; svn export $(SVNHOME) $(RELEASE); rm -f $(RELEASE)/Makefile)
0 commit comments