# This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # add this snipplet to your .bashrc to have gbuild output in nice color if and # only if running in an interactive shell function make { if [ -t 1 ] then `which make` gb_COLOR=T -r $@ else `which make` -r $@ fi }