<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 2af56520a520bbfc501c398591618d87056da7b8 Mon Sep 17 00:00:00 2001
From: Sergey Fedorov &lt;vital.had@gmail.com&gt;
Date: Fri, 26 May 2023 12:13:51 +0800
Subject: [PATCH 1/5] Makefile: add PPC

---
 Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git Makefile Makefile
index cbfbd23..d4cb2c7 100644
--- Makefile
+++ Makefile
@@ -61,6 +61,9 @@ endif
 ifneq ($(filter arm%, $(UNAME_M)),)
     -include $(CFG_DIR)/platforms/arm.mk
 endif
+ifeq ($(UNAME_M), "Power Macintosh")
+    -include $(CFG_DIR)/platforms/powerpc.mk
+endif
 
 # Include all needed checks
 -include $(CFG_DIR)/checks/check_features.mk
</pre></body></html>