summaryrefslogtreecommitdiff
path: root/support/make/wc.mk
blob: e273544f48066580596df1ae042d288a3de02f14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
############################################################-*-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

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