From 655c3881f38a6427b837ee97eea64537371d58e9 Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 20 Oct 2016 23:27:10 +0200 Subject: [PATCH] Add compilation on MINGW64 to Makefile --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 356a74b7a..5cd2810b4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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