Add cygwin support
authorneheb <rosenp@gmail.com>
Sun, 5 Jun 2016 20:22:38 +0000 (13:22 -0700)
committerneheb <rosenp@gmail.com>
Sun, 5 Jun 2016 20:22:38 +0000 (13:22 -0700)
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

index 8da8b1f..ce6c29e 100644 (file)
@@ -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