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

Merge pull request #364 from neheb/patch-2

Add cygwin support
This commit is contained in:
Jens Steube 2016-06-10 23:51:04 +02:00 committed by GitHub
commit 10b086a31d

View File

@ -13,8 +13,9 @@ PROG_NAME := hashcat
##
UNAME := $(shell uname -s)
UNAME := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
ifeq (,$(filter $(UNAME),Linux Darwin))
ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-))
$(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile")
endif