]> git.pld-linux.org Git - packages/audacious-plugins.git/blame - audacious-plugins-verbose_make.patch
- make Makefiles more verbose
[packages/audacious-plugins.git] / audacious-plugins-verbose_make.patch
CommitLineData
be091c23
KK
1--- buildsys.mk.in.orig 2011-02-07 19:20:48.661369541 +0000
2+++ buildsys.mk.in 2011-02-07 19:21:59.930520847 +0000
3@@ -92,7 +92,6 @@
4
5 MO_FILES = ${LOCALES:.po=.mo}
6
7-.SILENT:
8 .SUFFIXES:
9 .SUFFIXES: .beam .c .cc .cxx .d .dep .erl .mo .m .mm .o .po .py .pyc .xpm .S
10 .PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean
11@@ -502,21 +501,21 @@
12 # ./configure creates .deps files even in folders not listed in SUBDIRS.
13 rm -f `find . -name .deps ! -path ./.hg\*`
14
15-DIR_ENTER = printf "\033[K\033[0;36mEntering directory \033[1;36m$$i\033[0;36m.\033[0m\n"; cd $$i || exit 1
16-DIR_LEAVE = printf "\033[K\033[0;36mLeaving directory \033[1;36m$$i\033[0;36m.\033[0m\n"; cd .. || exit 1
17-DEPEND_STATUS = printf "\033[K\033[0;33mGenerating dependencies...\033[0m\r"
18-DEPEND_OK = printf "\033[K\033[0;32mSuccessfully generated dependencies.\033[0m\n"
19-DEPEND_FAILED = printf "\033[K\033[0;31mFailed to generate dependencies!\033[0m\n"; exit 1
20-COMPILE_STATUS = printf "\033[K\033[0;33mCompiling \033[1;33m$<\033[0;33m...\033[0m\r"
21-COMPILE_OK = printf "\033[K\033[0;32mSuccessfully compiled \033[1;32m$<\033[0;32m.\033[0m\n"
22-COMPILE_FAILED = printf "\033[K\033[0;31mFailed to compile \033[1;31m$<\033[0;31m!\033[0m\n"; exit 1
23-LINK_STATUS = printf "\033[K\033[0;33mLinking \033[1;33m$@\033[0;33m...\033[0m\r"
24-LINK_OK = printf "\033[K\033[0;32mSuccessfully linked \033[1;32m$@\033[0;32m.\033[0m\n"
25-LINK_FAILED = printf "\033[K\033[0;31mFailed to link \033[1;31m$@\033[0;31m!\033[0m\n"; exit 1
26-INSTALL_STATUS = printf "\033[K\033[0;33mInstalling \033[1;33m$$i\033[0;33m...\033[0m\r"
27-INSTALL_OK = printf "\033[K\033[0;32mSuccessfully installed \033[1;32m$$i\033[0;32m.\033[0m\n"
28-INSTALL_FAILED = printf "\033[K\033[0;31mFailed to install \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
29-DELETE_OK = printf "\033[K\033[0;34mDeleted \033[1;34m$$i\033[0;34m.\033[0m\n"
30-DELETE_FAILED = printf "\033[K\033[0;31mFailed to delete \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
31+DIR_ENTER = printf "Entering directory $$i.\n"; cd $$i || exit 1
32+DIR_LEAVE = printf "Leaving directory $$i.\n"; cd .. || exit 1
33+DEPEND_STATUS = printf "Generating dependencies...\n"
34+DEPEND_OK = printf "Successfully generated dependencies.\n"
35+DEPEND_FAILED = printf "Failed to generate dependencies!\n"; exit 1
36+COMPILE_STATUS = printf "Compiling $<...\n"
37+COMPILE_OK = printf "Successfully compiled $<.\n"
38+COMPILE_FAILED = printf "Failed to compile $<!\n"; exit 1
39+LINK_STATUS = printf "Linking $@...\n"
40+LINK_OK = printf "Successfully linked $@.\n"
41+LINK_FAILED = printf "Failed to link $@!\n"; exit 1
42+INSTALL_STATUS = printf "Installing $$i...\n"
43+INSTALL_OK = printf "Successfully installed $$i.\n"
44+INSTALL_FAILED = printf "Failed to install $$i!\n"; exit 1
45+DELETE_OK = printf "Deleted $$i.\n"
46+DELETE_FAILED = printf "Failed to delete $$i!\n"; exit 1
47
48 include .deps
This page took 0.033038 seconds and 4 git commands to generate.