Description: Build clean-ups
 This patch makes build output more useful when things go wrong.
Author: Jeff Licquia <licquia@debian.org>
Forwarded: not-needed
Last-Update: 2011-02-19

--- a/Makefile.in
+++ b/Makefile.in
@@ -75,14 +75,10 @@ VPATH		=	$(srcdir)
 
 
 # Rules...
-.SILENT:
-
 .SUFFIXES:	.c .cxx .h .o
 .c.o:
-	echo Compiling $<...
 	$(CC) $(CFLAGS) $(CPPFLAGS) -I. -I$(srcdir) -c $<
 .cxx.o:
-	echo Compiling $<...
 	$(CXX) $(CXXFLAGS) $(CPPFLAGS) -I. -I$(srcdir) -c $<
 
 
@@ -158,7 +154,7 @@ clang-changes:
 
 # Install all targets...
 install: all @INSTALL_GUIS@ @INSTALL_OSX@
-	echo Installing EPM programs in $(BUILDROOT)$(bindir)
+	@echo Installing EPM programs in $(BUILDROOT)$(bindir)
 	$(INSTALL) -d -m 755 $(BUILDROOT)$(bindir)
 	for file in epm epminstall mkepmlist; do \
 		$(INSTALL) -c -m 755 $$file $(BUILDROOT)$(bindir); \
@@ -180,7 +176,7 @@ install-macos:
 
 # Uninstall all targets...
 uninstall:
-	echo Uninstalling EPM programs from $(BUILDROOT)$(bindir)
+	@echo Uninstalling EPM programs from $(BUILDROOT)$(bindir)
 	$(RM) $(BUILDROOT)$(bindir)/epm
 	$(RM) $(BUILDROOT)$(bindir)/epminstall
 	$(RM) $(BUILDROOT)$(bindir)/mkepmlist
@@ -214,15 +210,15 @@ config.h:	config.h.in configure
 
 # Test EPM...
 test:	$(TARGETS)
-	echo Starting portable distribution build test...
-	if ./epm -vv epm >test.log; then \
+	@echo Starting portable distribution build test...
+	@if ./epm -vv epm >test.log; then \
 		echo Portable distribution build test PASSED.; \
 	else \
 		echo Portable distribution build test FAILED.; \
 		cat test.log; \
 	fi
-	echo Starting native distribution build test...
-	if ./epm -vv -s default.png -f native \
+	@echo Starting native distribution build test...
+	@if ./epm -vv -s default.png -f native \
 		--setup-program setup --uninstall-program uninst \
 		epm >test.log; then \
 		echo Native distribution build test PASSED.; \
@@ -268,7 +264,6 @@ swinstall depot: $(TARGETS)
 
 # libepm.a
 libepm.a:	$(EPM_OBJS)
-	echo Archiving libepm.a...
 	$(RM) libepm.a
 	$(AR) $(ARFLAGS) libepm.a $(EPM_OBJS)
 	$(RANLIB) libepm.a
@@ -278,7 +273,7 @@ $(EPM_OBJS):	epm.h epmstring.h
 
 # epm
 epm:	epm.o libepm.a
-	echo Linking epm...
+	@echo Linking epm...
 	$(CC) $(LDFLAGS) -o epm epm.o libepm.a $(LIBS)
 	#echo Code signing $@...
 	#$(CODE_SIGN) $(CSFLAGS) -i com.jimjag.epm.$@ $@
@@ -288,7 +283,6 @@ epm.o:	epm.h epmstring.h
 
 # epminstall
 epminstall:	epminstall.o libepm.a
-	echo Linking epminstall...
 	$(CC) $(LDFLAGS) -o epminstall epminstall.o libepm.a $(LIBS)
 	#echo Code signing $@...
 	#$(CODE_SIGN) $(CSFLAGS) -i com.jimjag.epm.$@ $@
@@ -298,7 +292,6 @@ epminstall.o:	epm.h epmstring.h
 
 # mkepmlist
 mkepmlist:	mkepmlist.o libepm.a
-	echo Linking mkepmlist...
 	$(CC) $(LDFLAGS) -o mkepmlist mkepmlist.o libepm.a $(LIBS)
 	#echo Code signing $@...
 	#$(CODE_SIGN) $(CSFLAGS) -i com.jimjag.epm.$@ $@
@@ -308,7 +301,6 @@ mkepmlist.o:	epm.h epmstring.h
 
 # setup (GUI)
 setup:	$(SETUP_OBJS) libepm.a
-	echo Linking setup...
 	$(CXX) $(LDFLAGS) -o setup $(SETUP_OBJS) libepm.a $(GUILIBS) $(LIBS)
 
 setup.o:	setup.h gui-common.h epmstring.h
@@ -318,7 +310,6 @@ gui-common.o:	gui-common.h
 
 # uninst (GUI)
 uninst:	$(UNINST_OBJS) libepm.a
-	echo Linking uninst...
 	$(CXX) $(LDFLAGS) -o uninst $(UNINST_OBJS) libepm.a $(GUILIBS) $(LIBS)
 
 uninst.o:	uninst.h epmstring.h gui-common.h
