From: neheb Date: Sun, 5 Jun 2016 20:22:38 +0000 (-0700) Subject: Add cygwin support X-Git-Tag: v3.00~72^2~1 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=a8bebb4a55f0dfc32b026cca0aad7dcd2d0237ac;p=hashcat.git 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? --- 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