]> git.pld-linux.org Git - packages/audacious-plugins.git/blame - audacious-plugins-verbose_make.patch
- BR: jack-audio-connection-kit-devel >= 1.9.7 for output-jack plugin
[packages/audacious-plugins.git] / audacious-plugins-verbose_make.patch
CommitLineData
f3bedf92 1--- audacious-plugins-2.5.0/buildsys.mk.in~ 2011-04-16 18:10:09.000000000 +0200
2+++ audacious-plugins-2.5.0/buildsys.mk.in 2011-05-04 13:15:04.393333839 +0200
3@@ -93,7 +93,6 @@
be091c23
KK
4
5 MO_FILES = ${LOCALES:.po=.mo}
6
7-.SILENT:
8 .SUFFIXES:
f3bedf92 9 .SUFFIXES: .beam .c .c.dep .cc .cc.dep .cxx .cxx.dep .d .erl .lib.o .mo .m .m.dep .mm .mm.dep .o .plugin.o .po .py .pyc .xpm .S .S.dep
10 .PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean locales
11@@ -564,27 +563,27 @@
12 fi \
13 done
be091c23 14
f3bedf92 15-DIR_ENTER = printf "@TERM_EL@@TERM_SETAF6@Entering directory @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF6@.@TERM_SGR0@\n"; cd $$i || exit 1
16-DIR_LEAVE = printf "@TERM_EL@@TERM_SETAF6@Leaving directory @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF6@.@TERM_SGR0@\n"; cd .. || exit 1
17-DEPEND_STATUS = printf "@TERM_EL@@TERM_SETAF3@Generating dependencies...@TERM_SGR0@\r"
18-DEPEND_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully generated dependencies.@TERM_SGR0@\n"
19-DEPEND_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to generate dependencies!@TERM_SGR0@\n"; exit 1
20-COMPILE_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
21-COMPILE_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
22-COMPILE_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit 1
23-COMPILE_LIB_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@ (lib)...@TERM_SGR0@\r"
24-COMPILE_LIB_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@ (lib).@TERM_SGR0@\n"
25-COMPILE_LIB_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@ (lib)!@TERM_SGR0@\n"; exit 1
26-COMPILE_PLUGIN_STATUS = printf "@TERM_EL@@TERM_SETAF3@Compiling @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF3@ (plugin)...@TERM_SGR0@\r"
27-COMPILE_PLUGIN_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully compiled @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF2@ (plugin).@TERM_SGR0@\n"
28-COMPILE_PLUGIN_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to compile @TERM_BOLD@$<@TERM_SGR0@@TERM_SETAF1@ (plugin)!@TERM_SGR0@\n"; exit 1
29-LINK_STATUS = printf "@TERM_EL@@TERM_SETAF3@Linking @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
30-LINK_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully linked @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
31-LINK_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to link @TERM_BOLD@$@@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit 1
32-INSTALL_STATUS = printf "@TERM_EL@@TERM_SETAF3@Installing @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF3@...@TERM_SGR0@\r"
33-INSTALL_OK = printf "@TERM_EL@@TERM_SETAF2@Successfully installed @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF2@.@TERM_SGR0@\n"
34-INSTALL_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to install @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit 1
35-DELETE_OK = printf "@TERM_EL@@TERM_SETAF4@Deleted @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF4@.@TERM_SGR0@\n"
36-DELETE_FAILED = printf "@TERM_EL@@TERM_SETAF1@Failed to delete @TERM_BOLD@$$i@TERM_SGR0@@TERM_SETAF1@!@TERM_SGR0@\n"; exit 1
be091c23
KK
37+DIR_ENTER = printf "Entering directory $$i.\n"; cd $$i || exit 1
38+DIR_LEAVE = printf "Leaving directory $$i.\n"; cd .. || exit 1
f3bedf92 39+DEPEND_STATUS = printf "Generating dependencies...\r"
be091c23
KK
40+DEPEND_OK = printf "Successfully generated dependencies.\n"
41+DEPEND_FAILED = printf "Failed to generate dependencies!\n"; exit 1
f3bedf92 42+COMPILE_STATUS = printf "Compiling $<...\r"
be091c23
KK
43+COMPILE_OK = printf "Successfully compiled $<.\n"
44+COMPILE_FAILED = printf "Failed to compile $<!\n"; exit 1
f3bedf92 45+COMPILE_LIB_STATUS = printf "Compiling $< (lib)...\r"
46+COMPILE_LIB_OK = printf "Successfully compiled $< (lib).\n"
47+COMPILE_LIB_FAILED = printf "Failed to compile $< (lib)!\n"; exit 1
48+COMPILE_PLUGIN_STATUS = printf "Compiling $< (plugin)...\r"
49+COMPILE_PLUGIN_OK = printf "Successfully compiled $< (plugin).\n"
50+COMPILE_PLUGIN_FAILED = printf "Failed to compile $< (plugin)!\n"; exit 1
51+LINK_STATUS = printf "Linking $@...\r"
be091c23
KK
52+LINK_OK = printf "Successfully linked $@.\n"
53+LINK_FAILED = printf "Failed to link $@!\n"; exit 1
f3bedf92 54+INSTALL_STATUS = printf "Installing $$i...\r"
be091c23
KK
55+INSTALL_OK = printf "Successfully installed $$i.\n"
56+INSTALL_FAILED = printf "Failed to install $$i!\n"; exit 1
57+DELETE_OK = printf "Deleted $$i.\n"
58+DELETE_FAILED = printf "Failed to delete $$i!\n"; exit 1
59
60 include .deps
This page took 0.05299 seconds and 4 git commands to generate.