summaryrefslogtreecommitdiff
path: root/support/make/wc.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/wc.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/wc.mk')
-rw-r--r--support/make/wc.mk45
1 files changed, 0 insertions, 45 deletions
diff --git a/support/make/wc.mk b/support/make/wc.mk
deleted file mode 100644
index e273544f48..0000000000
--- a/support/make/wc.mk
+++ /dev/null
@@ -1,45 +0,0 @@
-############################################################-*-Makefile-*-####
-# WC - Count Bytes, Words and Lines
-##############################################################################
-# $Id$
-
-##############################################################################
-# Usage
-#
-# make wc [FLAGS=<flags>] [FILES=<files>]
-#
-##############################################################################
-# Examples
-#
-# Count lines in all source files:
-#
-# make wc
-#
-#
-# Count lines in the compiler source files:
-#
-# make wc FILES='$(COMPILER_SOURCES)'
-#
-##############################################################################
-
-##############################################################################
-# Defaults
-
-WC ?= wc
-
-##############################################################################
-# Variables
-
-WC_BINARY ?= $(WC)
-WC_FLAGS ?= $(FLAGS)
-WC_FILES ?= $(if $(FILES),$(FILES),$(PROJECT_SOURCES))
-
-##############################################################################
-# Rules
-
-wc :
- @$(WC_BINARY) $(WC_FLAGS) $(WC_FILES:%='%')
-
-.PHONY : wc
-
-##############################################################################