Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

colormake(1) [debian man page]

colormake(1)						      General Commands Manual						      colormake(1)

NAME
colormake - color wrapper for make(1) SYNOPSIS
colormake [ --short ] ... DESCRIPTION
colormake acts as a wrapper around make(1) to ease reading the output by colorizing it. OPTIONS
The --short option instructs colormake to truncate lines so they do not wrap. All other options will be passed unmodified to make(1). USAGE
To change a makefile to use colormake, you may change the path at the top which normally reads #!/usr/bin/make to #!/usr/bin/colormake. Alternately, you may type colormake whenever you would normally type make when compiling programs. Colormake is also available using the alternate names which enable piping through less (clmake), truncated output so lines do not wrap (colormake-short), or both (clmake-short). FILES
The configuration files are Perl scripts included by colormake.pl. The defaults values are (from colormake.pl itself): # Some useful color codes, see end of file for more. # $col_black = "33[30m"; $col_red = "33[31m"; $col_green = "33[32m"; $col_yellow = "33[33m"; $col_blue = "33[34m"; $col_magenta = "33[35m"; $col_cyan = "33[36m"; $col_ltgray = "33[37m"; $col_norm = "33[00m"; $col_background = "33[07m"; $col_brighten = "33[01m"; $col_underline = "33[04m"; $col_blink = "33[05m"; # Customize colors here... # $col_default = $col_ltgray; $col_gcc = $col_magenta . $col_brighten; $col_make = $col_cyan; $col_filename = $col_yellow; $col_linenum = $col_cyan; $col_trace = $col_yellow; $col_warning = $col_green; $tag_error = ""; $col_error = $tag_error . $col_yellow . $col_brighten; $error_highlight = $col_brighten; For use with gnome-terminal I have the following configuration in my $HOME/.colormakerc file: $col_default = $col_black; $col_gcc = $col_magenta; $col_filename = $col_blue; $col_linenum = $col_cyan; $col_error = $tag_error . $col_red . $col_brighten; /usr/share/colormake/colormake.rc System-wide configuration file for colormake. $HOME/.colormakerc Personal configuration file for colormake. HISTORY
/usr/bin/colormake was formerly named /usr/bin/cmake but had to be renamed because of a name clash. AUTHORS
Bjarni R. Einarsson is the author of colormake. This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. This manual page was written by Joe Wreschnig <piman@sacredchao.net> and updated by Ludovic Rousseau <rousseau@debian.org>, for the Debian GNU/Linux system (but may be used by others). SEE ALSO
make(1), clmake(1) July 2nd, 2001 colormake(1)

Check Out this Related Man Page

DEVSCRIPTS.CONF(5)						File Formats Manual						DEVSCRIPTS.CONF(5)

NAME
devscripts.conf - configuration file for the devscripts package DESCRIPTION
The devscripts package provides a collection of scripts which may be of use to Debian developers and others wishing to build Debian pack- ages. Many of these have options which can be configured on a system-wide and per-user basis. Every script in the devscripts package which makes use of values from these configuration files describes the specific settings recognised in its own manpage. (For a list of the scripts, either see /usr/share/doc/devscripts/README.gz or look at the output of dpkg -L devscripts | grep /usr/bin.) The two configuration files are /etc/devscripts.conf for system-wide defaults and ~/.devscripts for per-user settings. They are written with bash(1) syntax, but should only have comments and simple variable assignments in them; they are both sourced (if present) by many of the devscripts scripts. Variables corresponding to simple switches should have one of the values yes and no; any other setting is regarded as equivalent to the default setting. All variable names are written in uppercase, and begin with the script name. Package-wide variables begin with "DEVSCRIPTS", and are listed below, as well as in the relevant manpages. For a list of all of the available options variables, along with their default settings, see the example configuration file /usr/share/doc/devscripts/devscripts.conf.ex. This is copied to /etc/devscripts.conf when the devscripts package is first installed. Information about configuration options introduced in newer versions of the package will be appended to /etc/devscripts.conf when the pack- age is upgraded. Every script which reads the configuration files can be forced to ignore them by using --no-conf as the first command-line option. PACKAGE-WIDE VARIABLES The currently recognised package-wide variables are: DEVSCRIPTS_CHECK_DIRNAME_LEVEL, DEVSCRIPTS_CHECK_DIRNAME_REGEX These variables control scripts which change directory to find a debian/changelog file or suchlike, and some other miscellaneous cases. In order to prevent unwanted, even possibly dangerous, behaviour, these variables control when actions will be performed. The scripts which currently make use of these variables are: debc, debchange/dch, debclean, debi, debrelease, debuild and uscan, but this list may change with time (and I may not remember to update this manpage). Please see the manpages of individual scripts for details of the specific behaviour for each script. SEE ALSO
devscripts(1) and /usr/share/doc/devscripts/README.gz. AUTHOR
This manpage was written for the devscripts package by the package maintainer Julian Gilbey <jdg@debian.org>. DEBIAN
Debian Utilities DEVSCRIPTS.CONF(5)
Man Page