From a8bebb4a55f0dfc32b026cca0aad7dcd2d0237ac Mon Sep 17 00:00:00 2001 From: neheb Date: Sun, 5 Jun 2016 13:22:38 -0700 Subject: [PATCH] Add cygwin support Doesn't actually build but "make win64" or "make win32" still works. Actually, why is the operating system even checked in the makefile? --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 8da8b1f..ce6c29e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,7 +14,7 @@ PROG_NAME := hashcat UNAME := $(shell uname -s) -ifeq (,$(filter $(UNAME),Linux Darwin)) +ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-10.0)) $(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile") endif -- 2.25.1