<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- UnitTest++/Makefile.orig	2014-06-23 23:49:36.000000000 -0500
+++ UnitTest++/Makefile	2014-09-03 15:24:07.000000000 -0500
@@ -1,6 +1,6 @@
-CXX = g++
-CXXFLAGS ?= -g -Wall -W -Winline -Wno-overloaded-virtual -Wno-unused-private-field -ansi 
-LDFLAGS ?= 
+CXX = @CXX@
+CXXFLAGS ?= -g -Wall -W -Winline -Wno-overloaded-virtual -Wno-unused-private-field -ansi @ARCHFLAGS@
+LDFLAGS ?= @ARCHFLAGS@
 SED = sed
 MV = mv
 RM = rm
@@ -73,11 +73,11 @@
 
 $(lib): $(objects) 
 	@echo Creating $(lib) library...
-	@ar crs $(lib) $(objects)
+	ar crs $(lib) $(objects)
     
 $(test): $(lib) $(test_objects)
 	@echo Linking $(test)...
-	@$(CXX) $(LDFLAGS) -o $(test) $(test_objects) $(lib)
+	$(CXX) $(LDFLAGS) -o $(test) $(test_objects) $(lib)
 	@echo Running unit tests...
 	@./$(test)
 
@@ -85,9 +85,8 @@
 	-@$(RM) $(objects) $(test_objects) $(dependencies) $(test_dependencies) $(test) $(lib) 2&gt; /dev/null
 
 %.o : %.cpp
-	@echo $&lt;
 	@$(call make-depend,$&lt;,$@,$(subst .o,.d,$@))
-	@$(CXX) $(CXXFLAGS) -c $&lt; -o $(patsubst %.cpp, %.o, $&lt;)
+	$(CXX) $(CXXFLAGS) -c $&lt; -o $(patsubst %.cpp, %.o, $&lt;)
 
 install:
 
</pre></body></html>