summaryrefslogtreecommitdiff
path: root/support/make/cygwin.mk
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
commitd3819b93ab8b2de3d5cc35c33b8258ccdb5a931a (patch)
treedfc6f7f497e58ea3321e6f687b11313d2afa86b5 /support/make/cygwin.mk
parent0e82079908655682e5140ad521cef0572cb6d2a4 (diff)
downloadscala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.gz
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.bz2
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.zip
Removed old Scalac code in sources and various ...
Removed old Scalac code in sources and various other obsolete elements.
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))
-
-##############################################################################