From: philsmd Date: Sun, 3 Jan 2016 18:25:37 +0000 (+0100) Subject: updated BUILD.md with the notes about OpenCL-Headers + removed some target that do... X-Git-Tag: v3.00-beta~563^2 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=1774f73601c6807bb9b7877a75f40ef4e6c7c6f2;p=hashcat.git updated BUILD.md with the notes about OpenCL-Headers + removed some target that do not exist anymore --- diff --git a/docs/BUILD.md b/docs/BUILD.md index a259564..b495eb6 100644 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -36,21 +36,31 @@ $ cd oclHashcat $ sudo ./tools/deps.sh ``` -Run "make all" +Run "make" ```sh -$ make all +$ make +``` + +to install it run "make install" + +```sh +$ make install ``` Useful tricks: -- build only *Linux* binaries +- build all binaries (see Note1): ```sh -$ make linux +$ make binaries ``` -- build only *Windows* binaries + +Note1: to install all binaries ("make binaries") you need to first clone the OpenCL-Headers within the main folder: + ```sh -$ make windows +$ 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. + = Enjoy your fresh **oclHashcat** binaries ;)