mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
24 lines
748 B
Diff
24 lines
748 B
Diff
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) - $<)
|
||
|
|
-@$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $<
|
||
|
|
+$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $<
|
||
|
|
|
||
|
|
endef # ASSEMBLE_recipe
|
||
|
|
|
||
|
|
define COMPILE_recipe
|
||
|
|
|
||
|
|
-$(if $(QUIET),,@echo $(TARGET) - $<)
|
||
|
|
-@$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
|
||
|
|
-@$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)
|
||
|
|
+$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
|
||
|
|
+$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)
|
||
|
|
|
||
|
|
endef # COMPILE_recipe
|
||
|
|
|