1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 16:38:29 +00:00

makefile: indentation fix (replace tabs with spaces) + comments about cygwin builds

This commit is contained in:
philsmd 2016-06-11 08:08:22 +02:00
parent f30629b21a
commit eb08afa543
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

View File

@ -13,7 +13,9 @@ PROG_NAME := hashcat
##
UNAME := $(shell uname -s)
UNAME := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
# we need to strip the windows version number to be able to build hashcat on cygwin hosts
UNAME := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-))
$(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile")