fixed checks in -m 500 parser
[hashcat.git] / docs / BUILD.md
index 6fc806c..60a9e6d 100644 (file)
@@ -1,15 +1,16 @@
 oclHashcat build documentation
 =
 # Revision:
-* 1.2
+* 1.3
 
 # Authors:
 * Gabriele Gristina <<matrix@hashcat.net>>
 * Christoph Heuwieser <<dropdead@hashcat.net>>
+* magnum <<john.magnum@hushmail.com>>
 
 # Building oclHashcat for Linux and OSX
 
-First get a copy of the **oclHashcat** repository
+Get a copy of the **oclHashcat** repository
 
 ```sh
 $ git clone https://github.com/hashcat/oclHashcat.git
@@ -21,41 +22,35 @@ Run "make"
 $ make
 ```
 
-to install it run "make install"
+# Install oclHashcat for Linux
+
+The install target is linux FHS compatible and can be used like this:
 
 ```sh
 $ make install
 ```
 
-# Building oclHashcat for Windows
-
-The following third party library is required:
-
-- NVAPI R352 ( https://developer.nvidia.com/nvapi )
+If you install it, cached kernels, session files, restore- and pot-files etc. will go to $HOME/.hashcat/
 
-Download the third party library listed above and put the .zip file into the *deps/tmp* directory.
-
-- R352-developer.zip 
+# Building oclHashcat for Windows
 
-Install the dependencies (root permission needed for apt-get install command)
+Get a copy of the **oclHashcat** repository
 
 ```sh
-$ ./tools/deps.sh
+$ git clone https://github.com/hashcat/oclHashcat.git
 ```
 
-- build all binaries:
+Basically all you need is the OpenCL Headers.
 
-```sh
-$ make win32 win64
-```
-
-# To build all binaries ("make binaries") you need to first clone the OpenCL-Headers within the main folder:
+Simply clone into the reference Implementation:
 
 ```sh
+$ mkdir -p deps/OpenCL-Headers
 $ git clone https://github.com/KhronosGroup/OpenCL-Headers deps/OpenCL-Headers/CL
 ```
 
-the tools/deps.sh script does not clone this repo automatically since for native compilation it is not needed.
-
+```sh
+$ make win32 win64
+```
 =
 Enjoy your fresh **oclHashcat** binaries ;)