2020-04-03 17:07:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Where to find the sources
|
|
|
|
ZSTD_SRC_ROOT="../../lib"
|
|
|
|
|
|
|
|
# Amalgamate the sources
|
|
|
|
echo "Amalgamating files... this can take a while"
|
2020-05-01 21:56:51 +00:00
|
|
|
./combine.sh -r "$ZSTD_SRC_ROOT" -k zstd.h -o zstd.c zstd-in.c
|
2020-04-03 17:07:46 +00:00
|
|
|
# Did combining work?
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Combine script: FAILED"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "Combine script: PASSED"
|