add release target
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 17 Mar 2004 10:27:53 +0000 (10:27 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 17 Mar 2004 10:27:53 +0000 (10:27 +0000)
Original commit message from CVS:
add release target

ChangeLog
release.mak [new file with mode: 0644]

index d3383d99b1239873561914e6d278ad748143a6a0..c0e147a67b4d2794ab400f67cac36f5c32511a3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,6 @@
-2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
+2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
 
-       reviewed by: <delete if not using a buddy>
-
-       * gst-autogen.sh:
+       * release.mak: add a release target
 
 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
 
diff --git a/release.mak b/release.mak
new file mode 100644 (file)
index 0000000..ac9f224
--- /dev/null
@@ -0,0 +1,12 @@
+# include this snippet to add a common release: target
+
+# make bz2 as well
+AUTOMAKE_OPTIONS = dist-bzip2
+
+release: dist
+       make @PACKAGE@-@VERSION@.tar.gz.md5
+       make @PACKAGE@-@VERSION@.tar.bz2.md5
+
+# generate md5 sum files
+%.md5: %
+       md5sum $< > $@