supermario/patchset/Custer/3-makefile-fixes.patch

318 lines
10 KiB
Diff

From: Horst Beepmanh <>
Subject: Makefile fixes
---
diff --git a/Drivers/Drivers.make b/Drivers/Drivers.make
--- a/Drivers/Drivers.make
+++ b/Drivers/Drivers.make
@@ -22,9 +22,6 @@ BackLightDir = {DriverDir}BackLight:
#include {SonyDir}Sony.make
-#include {SerialDir}Serial.make
-#include {SerialDMADir}SerialDMA.make
-
#include {NewAgeDir}NewAge.make
#include {IOPDir}IOP.make
diff --git a/Libs/InterfaceSrcs/Interface.Make b/Libs/InterfaceSrcs/Interface.Make
--- a/Libs/InterfaceSrcs/Interface.Make
+++ b/Libs/InterfaceSrcs/Interface.Make
@@ -308,8 +308,7 @@ CommResourceMgrExtensionsObjs = "{IfObjDir}CommRsrcMgrExtensionsGlue.a.o" ∂
Asm {IfAOpts} -o "{Targ}" "{IfSrcDir}Power.a"
-"{IfObjDir}"OSTraps.a.o ƒ "{ObjDir}"StandardEqu.d ∂
- "{IfSrcDir}OSTraps.a"
+"{IfObjDir}"OSTraps.a.o ƒ "{IfSrcDir}OSTraps.a"
Asm {IfAOpts} -o "{Targ}" "{IfSrcDir}OSTraps.a"
diff --git a/Make/Build b/Make/Build
--- a/Make/Build
+++ b/Make/Build
@@ -228,7 +228,7 @@
# Make sure that we FeatureSet as the first target
#
If "{Targets}"
- Set Targets "FeatureSet {Targets}"
+ Set Targets "FeatureSet StandardEqu {Targets}"
End
#
diff --git a/Make/DBLite.make b/Make/DBLite.make
--- a/Make/DBLite.make
+++ b/Make/DBLite.make
@@ -188,7 +188,7 @@ ResourceFiles = "{MiscDir}AppleTalk.ROM.RSRC" ∂
"{RsrcDir}kbd.rsrc"
-RomMondo ƒ FeatureSet "{ObjDir}StandardEqu.d" "{ImageDir}RomMondo"
+RomMondo ƒ FeatureSet StandardEqu "{ImageDir}RomMondo"
Beep;Beep;Beep
@@ -254,7 +254,7 @@ Clean ƒ
.cp.o ƒ .c
{CPlus} {StdCPOpts} -o {Targ} {DepDir}{Default}.cp
-#include {ToolSrcDir}Tools.make
+#include {DriverDir}Drivers.make
#include {MakeDir}MainCode.make
@@ -262,7 +262,5 @@ Clean ƒ
#include {DeclDir}VSCDeclData:VSCDeclData.make
-#include {DriverDir}Drivers.make
-
#include {ResourceDir}Resources.make
diff --git a/Make/LC930.make b/Make/LC930.make
--- a/Make/LC930.make
+++ b/Make/LC930.make
@@ -163,7 +163,7 @@ ResourceFiles = "{RsrcDir}ATBoot.RSRC" ∂
"{RsrcDir}kbd.rsrc"
-RomMondo ƒ FeatureSet "{ObjDir}StandardEqu.d" "{ImageDir}RomMondo"
+RomMondo ƒ FeatureSet StandardEqu "{ImageDir}RomMondo"
Beep;Beep;Beep
@@ -236,12 +236,10 @@ Clean ƒ
{CPlus} {StdCPOpts} -o {Targ} {DepDir}{Default}.cp
-#include {ToolSrcDir}Tools.make
+#include {DriverDir}Drivers.make
#include {MakeDir}MainCode.make
#include {DeclDir}DeclData.make
-#include {DriverDir}Drivers.make
-
#include {ResourceDir}Resources.make
diff --git a/Make/MainCode.Make b/Make/MainCode.Make
--- a/Make/MainCode.Make
+++ b/Make/MainCode.Make
@@ -154,6 +154,7 @@ MainCodeLibs = ∂
# It would be nice to be able to avoid full builds although the
# Traps.a files will use the stale setting of ROMFastTraps
#
+StandardEqu ƒ "{ObjDir}StandardEqu.d"
"{ObjDir}StandardEqu.d" ƒ
Asm {StdEquAOpts} -o Dev:Null "{IntAIncludes}StandardEqu.a" -i "{IntAIncludes}"
Move -y StandardEqu.d "{Targ}"
diff --git a/Make/RISC.make b/Make/RISC.make
--- a/Make/RISC.make
+++ b/Make/RISC.make
@@ -316,7 +316,7 @@ ResourceFiles = "{RsrcDir}ATBoot.RSRC" ∂
"{RsrcDir}kbd.rsrc"
-RomMondo ƒ FeatureSet "{ObjDir}StandardEqu.d" {ImageDir}RomMondo"
+RomMondo ƒ FeatureSet StandardEqu "{ImageDir}RomMondo"
"{ImageDir}RomMondo" ƒ {ResourceFiles}
@@ -379,12 +379,10 @@ Clean ƒ
.cp.o ƒ .c
{CPlus} {StdCPOpts} -o {Targ} {DepDir}{Default}.cp
-#include {ToolSrcDir}Tools.make
+#include {DriverDir}Drivers.make
#include {MakeDir}MainCode.make
#include {DeclDir}DeclData.make
-#include {DriverDir}Drivers.make
-
#include {ResourceDir}Resources.make
diff --git a/Make/Universal.make b/Make/Universal.make
--- a/Make/Universal.make
+++ b/Make/Universal.make
@@ -297,7 +297,7 @@ ResourceFiles = "{MiscDir}AppleTalk.ROM.RSRC" ∂
"{RsrcDir}kbd.rsrc"
-RomMondo ƒ FeatureSet "{ObjDir}StandardEqu.d" "{ImageDir}RomMondo"
+RomMondo ƒ FeatureSet StandardEqu "{ImageDir}RomMondo"
beep 1300,3,25 0,1,0 1200,3,25 0,1,0 1100,3,25 0,1,0 1000,3,25
@@ -367,12 +367,10 @@ Clean ƒ
{Pascal} {StdPOpts} -o {Targ} {DepDir}{Default}.p
-#include {ToolSrcDir}Tools.make
+#include {DriverDir}Drivers.make
#include {MakeDir}MainCode.make
#include {DeclDir}DeclData.make
-#include {DriverDir}Drivers.make
-
#include {ResourceDir}Resources.make
diff --git a/OS/MemoryMgr/FigmentSources/Figment.Make b/OS/MemoryMgr/FigmentSources/Figment.Make
--- a/OS/MemoryMgr/FigmentSources/Figment.Make
+++ b/OS/MemoryMgr/FigmentSources/Figment.Make
@@ -41,7 +41,7 @@ FigMemoryMgrObjs = "{ObjDir}MemMgrGlue.a.o" ∂
"{ObjDir}"QTMemory.c.o
-"{LibDir}Figment.lib" ƒ {FigMemoryMgrObjs} {MemoryMgrObjs}
+"{LibDir}Figment.lib" ƒ {FigMemoryMgrObjs}
Lib {StdLibOpts} -o "{Targ}" {FigMemoryMgrObjs}
diff --git a/OS/OS.make b/OS/OS.make
--- a/OS/OS.make
+++ b/OS/OS.make
@@ -67,14 +67,12 @@ RealTimeDir = {OSDir}RealTime:
#include {ADBDir}ADBMgr.make
#include {TimeMgrDir}TimeMgr.make
#include {MemoryMgrDir}MemoryMgr.make
-#include {BeepDir}Beep.make
#include {FPEmulationDir}FPEmulation.make
#include {GestaltDir}Gestalt.make
#include {KeyboardDir}Keyboard.make
#include {NetBootDir}NetBoot.make
#include {VDigDir}VDig.make
#include {I2CDir}I2C.make
-#include {RealTimeDir}RealTime.make
OSObjs = "{ObjDir}clock.a.o" ∂
diff --git a/Toolbox/Toolbox.make b/Toolbox/Toolbox.make
new file mode 100644
--- /dev/null
+++ b/Toolbox/Toolbox.make
@@ -0,0 +1,115 @@
+# This makefile was missing. Here is a rudimentary reconstruction.
+
+AliasMgrDir = "{ToolBoxDir}AliasMgr:"
+AppleEventDir = "{ToolBoxDir}AppleEventMgr:"
+ColorPickerDir = "{ToolBoxDir}ColorPicker:"
+CommToolboxDir = "{ToolBoxDir}CommToolbox:"
+ComponentMgrDir = "{ToolBoxDir}ComponentMgr:"
+ControlMgrDir = "{ToolBoxDir}ControlMgr:"
+DataAccessDir = "{ToolBoxDir}DataAccessMgr:"
+DialogDir = "{ToolBoxDir}DialogMgr:"
+DictionaryMgrDir = "{ToolBoxDir}DictionaryMgr:"
+DisplayMgrDir = "{ToolBoxDir}DisplayMgr:"
+EditionMgrDir = "{ToolBoxDir}DataPubsMgr:"
+ExpansionBusMgrDir = "{ToolBoxDir}ExpansionBusMgr:"
+FontMgrDir = "{ToolBoxDir}FontMgr:"
+HelpMgrDir = "{ToolBoxDir}HelpMgr:"
+IconUtilsDir = "{ToolBoxDir}IconUtils:"
+InSaneDir = "{ToolBoxDir}InSANE:"
+ListMgrDir = "{ToolBoxDir}ListMgr:"
+MenuMgrDir = "{ToolBoxDir}MenuMgr:"
+NotificationDir = "{ToolBoxDir}NotificationMgr:"
+PrintingDir = "{ToolBoxDir}Printing:"
+ResourceMgrDir = "{ToolBoxDir}ResourceMgr:"
+SANEDir = "{ToolBoxDir}SANE:"
+ScrapMgrDir = "{ToolBoxDir}ScrapMgr:"
+ScriptMgrDir = "{ToolBoxDir}ScriptMgr:"
+StandardFileDir = "{ToolBoxDir}StandardFile:"
+TextServicesDir = "{ToolBoxDir}TextServicesMgr:"
+ToolboxEventDir = "{ToolBoxDir}ToolboxEventMgr:"
+WindowMgrDir = "{ToolBoxDir}WindowMgr:"
+
+
+#include "{AliasMgrDir}AliasMgr.make"
+#include "{AppleEventDir}AppleEventMgr.make"
+#include "{ColorPickerDir}ColorPicker.make"
+#include "{CommToolboxDir}CommToolbox.make"
+#include "{ComponentMgrDir}ComponentMgr.make"
+#include "{ControlMgrDir}ControlMgr.make"
+#include "{DataAccessDir}DataAccessMgr.make"
+#include "{DialogDir}DialogMgr.make"
+#include "{DictionaryMgrDir}DictionaryMgr.make"
+#include "{DisplayMgrDir}DisplayMgr.make"
+#include "{EditionMgrDir}EditionMgr.make"
+#include "{ExpansionBusMgrDir}ExpansionBusMgr.make"
+#include "{FontMgrDir}FontMgr.make"
+#include "{HelpMgrDir}HelpMgr.make"
+#include "{IconUtilsDir}IconUtils.make"
+#include "{InSaneDir}InSane.make"
+#include "{ListMgrDir}ListMgr.make"
+#include "{MenuMgrDir}MenuMgr.make"
+#include "{NotificationDir}NotificationMgr.make"
+#include "{ResourceMgrDir}ResourceMgr.make"
+#include "{SANEDir}SANE.make"
+#include "{ScriptMgrDir}ScriptMgr.make"
+#include "{StandardFileDir}StandardFile.make"
+#include "{TextServicesDir}TextServicesMgr.make"
+#include "{ToolboxEventDir}ToolboxEventMgr.make"
+#include "{WindowMgrDir}WindowMgr.make"
+
+
+ToolboxObjs = "{ObjDir}PackageMgr.a.o" ∂
+ "{ObjDir}SegmentLoader.a.o" ∂
+ "{ObjDir}ShutDownMgr.a.o" ∂
+ "{ObjDir}ShutDownMgr.c.o" ∂
+ "{ObjDir}Munger.a.o" ∂
+ "{ObjDir}DeskMgr.a.o" ∂
+ "{ObjDir}GetMgr.a.o" ∂
+ "{ObjDir}TextEdit.a.o" ∂
+ "{ObjDir}ScrapMgr.a.o" ∂
+ "{ObjDir}PrintGlue.a.o" ∂
+ "{ObjDir}BlueBoxPrintHook.c.o" ∂
+ "{ObjDir}SexyDate.a.o" ∂
+
+
+# Just guessing what the binaries should be called:
+# *.lib for multi-file managers, *.a.o for single-file managers
+
+"{LibDir}Toolbox.lib" ƒ {ToolboxObjs}
+ Lib {StdLibOpts} {ToolboxObjs} -o "{Targ}"
+
+"{ObjDir}PackageMgr.a.o" ƒ "{ToolboxDir}PackageMgr.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}PackageMgr.a"
+
+"{ObjDir}SegmentLoader.a.o" ƒ "{ToolboxDir}SegmentLoader:SegmentLoader.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}SegmentLoader:SegmentLoader.a"
+
+"{ObjDir}ShutDownMgr.a.o" ƒ "{ToolboxDir}ShutDownMgr:ShutDownMgr.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}ShutDownMgr:ShutDownMgr.a"
+
+"{ObjDir}ShutDownMgr.c.o" ƒ "{ToolboxDir}ShutDownMgr:ShutDownMgr.c"
+ C {StdCOpts} -o "{Targ}" "{ToolboxDir}ShutDownMgr:ShutDownMgr.c"
+
+"{ObjDir}Munger.a.o" ƒ "{ToolboxDir}Munger:Munger.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}Munger:Munger.a"
+
+"{ObjDir}DeskMgr.a.o" ƒ "{ToolboxDir}DeskMgr:DeskMgr.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}DeskMgr:DeskMgr.a"
+
+"{ObjDir}GetMgr.a.o" ƒ "{ToolboxDir}GetMgr:GetMgr.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}GetMgr:GetMgr.a"
+
+"{ObjDir}TextEdit.a.o" ƒ "{ToolboxDir}TextEdit:TextEdit.a" "{ToolboxDir}TextEdit:IncludeTextEdit.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}TextEdit:IncludeTextEdit.a"
+
+"{ObjDir}SexyDate.a.o" ƒ "{ToolboxDir}SexyDate.a"
+ Asm {StdAOpts} -o "{Targ}" "{ToolboxDir}SexyDate.a"
+
+"{ObjDir}ScrapMgr.a.o" ƒ "{ScrapMgrDir}ScrapMgr.a"
+ Asm {StdAOpts} -o "{Targ}" "{ScrapMgrDir}ScrapMgr.a"
+
+"{ObjDir}PrintGlue.a.o" ƒ "{PrintingDir}PrintGlue.a"
+ Asm {StdAOpts} -o "{Targ}" "{PrintingDir}PrintGlue.a"
+
+"{ObjDir}BlueBoxPrintHook.c.o" ƒ "{PrintingDir}BlueBoxPrintHook.c"
+ C {StdCOpts} -o "{Targ}" "{PrintingDir}BlueBoxPrintHook.c"
diff --git a/Toolbox/Toolbox.make.idump b/Toolbox/Toolbox.make.idump
new file mode 100644
--- /dev/null
+++ b/Toolbox/Toolbox.make.idump
@@ -0,0 +1 @@
+TEXTMPS
\ No newline at end of file