1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 08:38:09 +00:00

Add compilation on MINGW64 to Makefile

This commit is contained in:
jsteube 2016-10-20 23:27:10 +02:00
parent 27e92540e4
commit 655c3881f3

View File

@ -13,8 +13,9 @@ UNAME := $(shell uname -s)
# we need to strip the windows version number to be able to build hashcat on cygwin hosts
UNAME := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
UNAME := $(patsubst MINGW64_NT-%,MINGW64_NT-,$(UNAME))
ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT- FreeBSD))
ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT- MINGW64_NT- FreeBSD))
$(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile")
endif