1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-22 12:32:04 +00:00

make native build play well with external build systems

This commit is contained in:
Nikolai Lifanov 2016-07-05 14:59:46 -04:00
parent 4a598af78c
commit 61efadb684

View File

@ -58,13 +58,14 @@ OPENCL_HEADERS_KHRONOS := deps/OpenCL-Headers
## Native compiler paths
##
CC := gcc
FIND := find
INSTALL := install
RM := rm
SED := sed
CC ?= gcc
FIND ?= find
INSTALL ?= install
RM ?= rm
ifeq ($(UNAME),Darwin,FreeBSD)
SED := gsed
SED ?= gsed
else
SED ?= sed
endif
##