mirror of
https://github.com/facebook/zstd.git
synced 2025-07-05 15:09:03 +02:00
15 lines
335 B
Bash
15 lines
335 B
Bash
![]() |
#!/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"
|