]> wimlib.net Git - wimlib/blobdiff - tools/make-releases
v1.14.4
[wimlib] / tools / make-releases
diff --git a/tools/make-releases b/tools/make-releases
deleted file mode 100755 (executable)
index fad2b88..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-set -e
-
-MAKE="make -j$(grep -c processor /proc/cpuinfo)"
-
-export CFLAGS="-O2 -Wall -Werror"
-
-./configure && $MAKE distcheck
-
-# Recompress with 7-Zip
-gzfile=$(ls wimlib-*.tar.gz | tail -1)
-tarfile=${gzfile%.gz}
-gunzip $gzfile
-7z -mx9 a $gzfile $tarfile
-rm -f $tarfile
-
-for arch in i686 x86_64; do
-       ./tools/make-windows-release $arch
-done