summaryrefslogtreecommitdiffstats
path: root/lib/README.md
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-11 07:57:46 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-11 07:57:46 (GMT)
commitec6fb477b283b88feeb7173bd3d87faad16cf0e7 (patch)
treeaec6b55cd33182879c83bcde0f640e18c24e0ee4 /lib/README.md
parent9d075580decdd1de70c9f4f612d6df5999adbe22 (diff)
downloadlz4-ec6fb477b283b88feeb7173bd3d87faad16cf0e7.zip
lz4-ec6fb477b283b88feeb7173bd3d87faad16cf0e7.tar.gz
lz4-ec6fb477b283b88feeb7173bd3d87faad16cf0e7.tar.bz2
added visual\README.md
Diffstat (limited to 'lib/README.md')
-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
```