]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Rewrite References to Location 2618/head
authorW. Felix Handte <w@felixhandte.com>
Wed, 5 May 2021 22:03:48 +0000 (18:03 -0400)
committerW. Felix Handte <w@felixhandte.com>
Wed, 5 May 2021 22:03:48 +0000 (18:03 -0400)
Makefile
build/single_file_libs/README.md

index 8522d9d5e81706375cc4759d5dc04e4bbf2d668b..55c24530b1abe3c76376a834b8b66c1ca175a7bd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -122,8 +122,8 @@ contrib: lib
        $(MAKE) -C contrib/seekable_format/examples all
        $(MAKE) -C contrib/seekable_format/tests test
        $(MAKE) -C contrib/largeNbDicts all
-       cd contrib/single_file_libs/ ; ./build_decoder_test.sh
-       cd contrib/single_file_libs/ ; ./build_library_test.sh
+       cd build/single_file_libs/ ; ./build_decoder_test.sh
+       cd build/single_file_libs/ ; ./build_library_test.sh
 
 .PHONY: cleanTabs
 cleanTabs:
index d88e8fc6bda300ca26bbdb6c1422fc78c1d14de2..1705b769b85c3bf9663287eeb21d4bf3454d57ae 100644 (file)
@@ -11,7 +11,7 @@ This is the most common use case. The decompression library is small, adding, fo
 
 Create `zstddeclib.c` from the Zstd source using:
 ```
-cd zstd/contrib/single_file_libs
+cd zstd/build/single_file_libs
 ./combine.sh -r ../../lib -o zstddeclib.c zstddeclib-in.c
 ```
 Then add the resulting file to your project (see the [example files](examples)).
@@ -25,7 +25,7 @@ The same tool can amalgamate the entire Zstd library for ease of adding both com
 
 Create `zstd.c` from the Zstd source using:
 ```
-cd zstd/contrib/single_file_libs
+cd zstd/build/single_file_libs
 ./combine.sh -r ../../lib -o zstd.c zstd-in.c
 ```
 It's possible to create a compressor-only library but since the decompressor is so small in comparison this doesn't bring much of a gain (but for the curious, simply remove the files in the _decompress_ section at the end of `zstd-in.c`).