minor script renaming, for clarity

This commit is contained in:
Yann Collet
2019-08-27 16:01:39 -07:00
parent 517aeb89dc
commit f61e8a231f
3 changed files with 21 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
# Where to find the sources
ZSTD_SRC_ROOT="../../lib"
# Amalgamate the sources
./combine.sh -r "$ZSTD_SRC_ROOT" -r "$ZSTD_SRC_ROOT/common" -r "$ZSTD_SRC_ROOT/decompress" -o zstddeclib.c zstddeclib-in.c
# Did combining work?
if [ $? -ne 0 ]; then
echo "Combine script: FAILED"
exit 1
fi
echo "Combine script: PASSED"