summaryrefslogtreecommitdiff
path: root/support/make/cygwin.mk
diff options
context:
space:
mode:
Diffstat (limited to 'support/make/cygwin.mk')
-rw-r--r--support/make/cygwin.mk32
1 files changed, 0 insertions, 32 deletions
diff --git a/support/make/cygwin.mk b/support/make/cygwin.mk
deleted file mode 100644
index 2fc301ea09..0000000000
--- a/support/make/cygwin.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-############################################################-*-Makefile-*-####
-# CYGWIN - Cygwin Support
-##############################################################################
-# $Id$
-
-##############################################################################
-# Exports
-#
-# CYGWIN_TEST : a variable that is non-empty under cygwin
-# CYGWIN_PATH : a function that converts file paths
-# CYGWIN_FILE : a function that converts file names
-#
-##############################################################################
-
-##############################################################################
-# Defaults
-
-UNAME ?= uname
-CYGPATH ?= cygpath
-
-##############################################################################
-# Values
-
-CYGWIN_TEST = $(filter CYGWIN%,$(shell $(UNAME)))
-
-##############################################################################
-# Functions
-
-CYGWIN_PATH = $(if $(CYGWIN_TEST),`$(CYGPATH) -w -p $(1)`,$(1))
-CYGWIN_FILE = $(if $(CYGWIN_TEST),`$(CYGPATH) -w $(1)`,$(1))
-
-##############################################################################