OSDN Git Service

Updated the Makefile to create a ZIP package on Windows.
[mhash384/mhash384.git] / README.md
index b247c6a..aa5448c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -497,13 +497,17 @@ The following options can be used to tweak the behavior of the provided makefile
 * **`STATIC`**: If set to `1`, link with *static* CRT libraries; otherwise link with *shared* CRT libraries (default is `0`)
 * **`DEBUG`**: If set to `1`, generate a binary suitable for debugging; otherwise generate an optimized binary (default is `0`)
 * **`NODOCS`**: If set to `1`, the HTML documents are **no** generated; useful where pandoc is unavailable (default is `0`)
+* **`SANITIZE`**: Instrument the binary with the specified sanitizer, e.g. `address` to enable the [*AddressSanitizer*](https://gcc.gnu.org/onlinedocs/gcc-9.2.0/gcc/Instrumentation-Options.html#index-fsanitize_003daddress) (*no* default)
+
+The following options can be used to override the default tools used by the makefiles:
+
 * **`CXX`**: The C++ compiler to be used (default is *system-specific*, e.g. `g++` or `clang++`)
 * **`AR`**: The archiver to be used (default is *system-specific*, usually `ar`)
 * **`STRIP`**: The strip program to be used (default is `strip`)
-* **`WNDRS`**: The Windows resource compiler to be used, used on Cygwin and MinGW only (default is `windres`)
-* **`PNDOC`**: The pandoc document converter to be used (default is `pandoc`)
+* **`PNDC`**: The document converter to be used (default is `pandoc`)
 * **`TAR`**: The tarball program to be used (default is `tar`)
-* **`SANITIZE`**: Instrument the binary with the specified sanitizer, e.g. `address` to enable [*AddressSanitizer*](https://gcc.gnu.org/onlinedocs/gcc-9.2.0/gcc/Instrumentation-Options.html#index-fsanitize_003daddress) (*no* default)
+* **`WNDRS`**: The Windows resource compiler to be used, used on Cygwin and MinGW only (default is `windres`)
+* **`ZIP`**: The zip program to be used, used on Cygwin and MinGW only (default is `zip`)
 
 ### Windows support