]> wimlib.net Git - wimlib/blobdiff - tools/make-releases
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / tools / make-releases
diff --git a/tools/make-releases b/tools/make-releases
deleted file mode 100755 (executable)
index 33b209e..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-set -e
-
-MAKE="make -j$(grep -c processor /proc/cpuinfo)"
-
-export CFLAGS="-O2 -Wall -Werror"
-
-autoreconf -i -f # make sure the version number gets updated
-
-./configure && $MAKE distcheck
-
-# Recompress with libdeflate
-gzfile=$(ls wimlib-*.tar.gz | tail -1)
-tarfile=${gzfile%.gz}
-libdeflate-gunzip $gzfile
-libdeflate-gzip -12 $tarfile
-
-for arch in i686 x86_64; do
-       ./tools/make-windows-release $arch
-done