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
+4 -1
View File
@@ -7,7 +7,10 @@ Create `zstddeclib.c` from the Zstd source using:
cd zstd/contrib/declib
./combine.sh -r ../../lib -r ../../lib/common -r ../../lib/decompress -o zstddeclib.c zstddeclib-in.c
```
Then add the resulting file to your project (see the [example files](examples)). `build.sh` will run the above script then compile and test the library.
Then add the resulting file to your project (see the [example files](examples)).
`create_single_file_decoder.sh` will run the above script, creating file `zstddeclib.c`.
`build_test.sh` will create the decoder, then compile and test the library.
Why
---