aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Makefile9
2 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c32b546
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.tar.gz \ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..09a0acf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+VERSION := 1.1
+
+dist:
+ git archive \
+ --output="create-license-$(VERSION).tar.gz" \
+ --prefix="create-license-$(VERSION)/" \
+ HEAD
+
+.PHONY: dist