<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Disable silent rules.
--- libsrc/Makefile.orig	2020-05-30 14:03:15.000000000 -0500
+++ libsrc/Makefile	2021-09-26 05:32:34.000000000 -0500
@@ -263,16 +263,14 @@
 
 define ASSEMBLE_recipe
 
-$(if $(QUIET),,@echo $(TARGET) - $&lt;)
-@$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $&lt;
+$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $&lt;
 
 endef # ASSEMBLE_recipe
 
 define COMPILE_recipe
 
-$(if $(QUIET),,@echo $(TARGET) - $&lt;)
-@$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $&lt;
-@$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)
+$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $&lt;
+$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)
 
 endef # COMPILE_recipe
 
</pre></body></html>