summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2016-11-14 16:27:06 (GMT)
committerGitHub <noreply@github.com>2016-11-14 16:27:06 (GMT)
commit569897ddddd57c2fddfac49cdf561a2ea92e2c00 (patch)
treede0482e936ca6827d012b5b0aab308545fce6115 /lib
parent1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827 (diff)
parent9ad7508db0cfd5473ae722deab981cc9bbcafb79 (diff)
downloadlz4-569897ddddd57c2fddfac49cdf561a2ea92e2c00.zip
lz4-569897ddddd57c2fddfac49cdf561a2ea92e2c00.tar.gz
lz4-569897ddddd57c2fddfac49cdf561a2ea92e2c00.tar.bz2
Merge pull request #269 from inikep/dev
Dev
Diffstat (limited to 'lib')
-rw-r--r--lib/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/README.md b/lib/README.md
index 3ca2776..19f429a 100644
--- a/lib/README.md
+++ b/lib/README.md
@@ -40,13 +40,13 @@ It must be used with static linking ***only***.
#### Using MinGW+MSYS to create DLL
-DLL can be created using MinGW+MSYS with the "make liblz4" command.
-This command creates "liblz4.dll" and the import library "liblz4.dll.a".
+DLL can be created using MinGW+MSYS with the `make liblz4` command.
+This command creates `liblz4.dll` and the import library `liblz4.dll.a`.
To compile a project the import library has to be added to linking options.
-It means that if a project that uses LZ4 consists of a single test-dll.c
+It means that if a project that uses LZ4 consists of a single `test-dll.c`
file it should be compiled with "liblz4.dll.a". For example:
```
- gcc $CFLAGS test-dll.c -o test-dll liblz4.dll.a
+ gcc $(CFLAGS) test-dll.c -o test-dll liblz4.dll.a
```