<pre style='margin:0'>
Christopher Nielsen (mascguy) pushed a commit to branch master
in repository macports-legacy-support.

</pre>
<p><a href="https://github.com/macports/macports-legacy-support/commit/22a2857e326bb38d2c78a8f838ad09e2a533d55c">https://github.com/macports/macports-legacy-support/commit/22a2857e326bb38d2c78a8f838ad09e2a533d55c</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit 22a2857e326bb38d2c78a8f838ad09e2a533d55c
</span>Author: Fred Wright <fw@fwright.net>
AuthorDate: Thu Oct 17 15:46:33 2024 -0700

<span style='display:block; white-space:pre;color:#404040;'>    Makefile: Add targets for object files.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    This facilitates building object files and libraries with separate
</span><span style='display:block; white-space:pre;color:#404040;'>    make commands, using different options.  This is just for debugging.
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    TESTED:
</span><span style='display:block; white-space:pre;color:#404040;'>    New targets build as expected.
</span>---
 Makefile | 9 +++++++++
 1 file changed, 9 insertions(+)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/Makefile b/Makefile
</span><span style='display:block; white-space:pre;color:#808080;'>index 23db8c2..6802775 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/Makefile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -281,6 +281,14 @@ $(SLIBOBJS): %$(SLIBOBJEXT): %.c $(ALLHEADERS)
</span> $(ADDOBJS): %$(SLIBOBJEXT): %.c $(ALLHEADERS)
        $(CC) -c -I$(SRCINCDIR) $(ALLCFLAGS) $(SLIBCFLAGS) $< -o $@
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+dlibobjs: $(DLIBOBJS) $(MULTIDLIBOBJS)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+syslibobjs: $(DLIBOBJS) $(MULTIDLIBOBJS) $(ADDOBJS)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+slibobjs: $(SLIBOBJS) $(MULTISLIBOBJS)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+allobjs: dlibobjs slibobjs syslibobjs
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> $(TESTOBJS_C): %.o: %.c $(ALLHEADERS)
        $(CC) -c -std=c99 -I$(SRCINCDIR) $(ALLCFLAGS) $< -o $@
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -443,3 +451,4 @@ clean: $(MANRUNPREFIX)clean test_clean
</span> .PHONY: $(MANRUNPREFIX)clean test_clean xtest_clean
 .PHONY: install install-headers install-lib install-dlib install-slib
 .PHONY: tiger-bins install-tiger
<span style='display:block; white-space:pre;background:#e0ffe0;'>+.PHONY: allobjs dlibobjs slibobjs syslibobjs
</span></pre><pre style='margin:0'>

</pre>