source: trunk/kBuild/msgstyles/brief.kmk@ 890

Last change on this file since 890 was 890, checked in by bird, 18 years ago

Applied a message patch.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.4 KB
Line 
1# $Id: brief.kmk 890 2007-05-02 23:27:22Z bird $
2## @file
3#
4# kBuild Message Style - 'brief'
5#
6# Copyright (c) 2007 knut st. osmundsen <bird-kBuild-spam@anduin.net>
7#
8#
9# This file is part of kBuild.
10#
11# kBuild is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# kBuild is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with kBuild; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24#
25#
26
27# Indent the messages, drop the kBuild: prefix, and shorten paths.
28ifndef KBUILD_VERBOSE
29 MSG_L1 ?= @$(PRINTF) " %-8s%s" "$(subst $(PATH_ROOT)/,{R}/,$(subst $(PATH_OUT)/,{O}/,$(subst $(CURDIR)/,{C}/,$(subst $(PATH_TARGET)/,{T}/,$1))))"
30 MSG_L1 ?= @$(PRINTF) " %-8s%s\n" \
31 "$(subst $(PATH_ROOT)/,{R}/,$(subst $(PATH_OUT)/,{O}/,$(subst $(CURDIR)/,{C}/,$(subst $(PATH_TARGET)/,{T}/,$1))))" \
32 "$(subst $(PATH_ROOT)/,{R}/,$(subst $(PATH_OUT)/,{O}/,$(subst $(CURDIR)/,{C}/,$(subst $(PATH_TARGET)/,{T}/,$2))))"
33else
34 MSG_L1 ?= @$(ECHO) " $(subst $(PATH_ROOT)/,{R}/,$(subst $(PATH_OUT)/,{O}/,$(subst $(CURDIR)/,{C}/,$(subst $(PATH_TARGET)/,{T}/,$1 $2))))"
35 MSG_L2 ?= @$(ECHO) " $(subst $(PATH_ROOT)/,{R}/,$(subst $(PATH_OUT)/,{O}/,$(subst $(CURDIR)/,{C}/,$(subst $(PATH_TARGET)/,{T}/,$1))))"
36endif
37
38## Fetch starting.
39# @param 1 Target name.
40MSG_FETCH ?= $(call MSG_L1,FTCH,$1...)
41## Re-fetch starting.
42# @param 1 Target name.
43MSG_REFETCH ?= $(call MSG_L1,RFTCH,$1...)
44## Downloading a fetch component.
45# @param 1 Target name.
46# @param 2 The source URL.
47# @param 3 The destination file name.
48MSG_FETCH_DL ?= $(call MSG_L1,GET,$1 - $2,=> $3)
49## Checking a fetch component.
50# @param 1 Target name.
51# @param 2 The source URL.
52# @param 3 The destination file name.
53MSG_FETCH_CHK?= $(call MSG_L1,CHK,$1 - $3, ($2))
54## Unpacking a fetch component.
55# @param 1 Target name.
56# @param 2 The archive file name.
57# @param 3 The target directory.
58MSG_FETCH_UP ?= $(call MSG_L1,UNPK,$1 - $2,=> $3)
59## Fetch completed.
60# @param 1 Target name.
61MSG_FETCH_OK ?= $(call MSG_L1,DONE,$1)
62## Unfetch a fetch target.
63# @param 1 Target name.
64MSG_UNFETCH ?= $(call MSG_L1,RM,$1...)
65## Compiling a source file.
66# @param 1 Target name.
67# @param 2 The source filename.
68# @param 3 The primary link output file name.
69# @param 4 The source type (CXX,C,AS,RC,++).
70MSG_COMPILE ?= $(call MSG_L1,$4,$1 - $2,=> $3)
71## Tool
72# @param 1 The tool name (bin2c,...)
73# @param 2 Target name.
74# @param 3 The source filename.
75# @param 4 The primary output file name.
76MSG_TOOL ?= $(call MSG_L1,$1,$2 - $3,=> $4)
77## Generate a file, typically a source file.
78# @param 1 Target name if applicable.
79# @param 2 Output file name.
80# @param 3 What it's generated from
81MSG_GENERATE ?= $(call MSG_L1,GEN,$2)
82## Linking a bldprog/dll/program/sysmod target.
83# @param 1 Target name.
84# @param 2 The primary link output file name.
85# @param 3 The link tool operation (LINK_LIBRARY,LINK_PROGRAM,LINK_DLL,LINK_SYSMOD,++).
86MSG_LINK ?= $(call MSG_L1,$(if $(eq $3,LINK_LIBRARY),AR,LD),$1,=> $2)
87## Merging a library into the target (during library linking).
88# @param 1 Target name.
89# @param 2 The output library name.
90# @param 3 The input library name.
91MSG_AR_MERGE ?= $(NO_SUCH_VARIABLE)
92## Creating a directory (build).
93# @param 1 Directory name.
94MSG_MKDIR ?= $(call MSG_L2,DIR,$1)
95## Cleaning.
96MSG_CLEAN ?= $(call MSG_L1,CLEAN)
97## Nothing.
98MSG_NOTHING ?= $(call MSG_L1,NOTHING $(CURDIR))
99## Installing a bldprog/lib/dll/program/sysmod target.
100# @param 1 Target name.
101# @param 2 The source filename.
102# @param 3 The destination file name.
103MSG_INST_TRG ?= $(call MSG_L1,INST,$1 => $3)
104## Installing a file (install target).
105# @param 1 The source filename.
106# @param 2 The destination filename.
107MSG_INST_FILE?= $(call MSG_L1,IFIL,$2,(<= $1))
108## Installing a symlink.
109# @param 1 Symlink
110# @param 2 Link target
111MSG_INST_SYM ?= $(call MSG_L1,ISYM,$1,=> $2)
112## Installing a directory.
113# @param 1 Directory name.
114MSG_INST_DIR ?= $(call MSG_L1,IDIR,$1)
115
Note: See TracBrowser for help on using the repository browser.