summaryrefslogblamecommitdiff
path: root/support/make/wc.mk
blob: 744920939d8e5ff28762d8accca01cd5c0aef174 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                              
                                           















                                                                              




                                                                              














                                                                              
############################################################-*-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

##############################################################################