1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-05 15:09:03 +02:00
Files
zstd/contrib/single_file_decoder/create_single_file_decoder.sh

16 lines
384 B
Bash
Raw Normal View History

2019-08-28 13:23:48 -07:00
#!/bin/sh
2019-08-27 16:01:39 -07:00
# Where to find the sources
ZSTD_SRC_ROOT="../../lib"
# Amalgamate the sources
2019-08-28 12:17:29 -07:00
echo "Amalgamating files... this can take a while"
2019-08-27 16:01:39 -07:00
./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"