1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00

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?
This commit is contained in:
neheb 2016-06-05 13:22:38 -07:00
parent 9d2c24fc0d
commit a8bebb4a55

View 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