summaryrefslogtreecommitdiff
path: root/Tools/Python
diff options
context:
space:
mode:
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2007-01-10 02:23:35 +0000
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2007-01-10 02:23:35 +0000
commit0026dbe0acd9f19489129dc050158e999e0bb795 (patch)
treeac3a5278e98cb77cb2759b187580548b766e03bc /Tools/Python
parent51ac2ffdab2124694a466b56283440414e51780c (diff)
downloadedk2-0026dbe0acd9f19489129dc050158e999e0bb795.zip
edk2-0026dbe0acd9f19489129dc050158e999e0bb795.tar.gz
edk2-0026dbe0acd9f19489129dc050158e999e0bb795.tar.bz2
Add a python script that can generate gnu makefiles for the mde package.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2204 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Python')
-rwxr-xr-xTools/Python/GenMake.py89
1 files changed, 89 insertions, 0 deletions
diff --git a/Tools/Python/GenMake.py b/Tools/Python/GenMake.py
new file mode 100755
index 0000000..56401fb
--- /dev/null
+++ b/Tools/Python/GenMake.py
@@ -0,0 +1,89 @@
+#!/usr/bin/env python
+
+"""Create Makefiles for the MdePkg."""
+
+import os, sys, getopt, string, xml.dom.minidom, shutil
+from XmlRoutines import *
+from WorkspaceRoutines import *
+
+ARCH = "X64"
+
+Makefile = """MAKEROOT ?= ..
+
+LIBNAME = %s
+
+OBJECTS = %s
+
+include $(MAKEROOT)/lib.makefile
+"""
+
+def openMdeSpd():
+
+ """Open the MdePkg.spd and process the msa files."""
+
+ db = xml.dom.minidom.parse(inWorkspace("MdePkg/MdePkg.spd"))
+
+ for msaFile in XmlList(db, "/PackageSurfaceArea/MsaFiles/Filename"):
+ msaFileName = XmlElementData(msaFile)
+ DoLib(msaFileName)
+
+ return db
+
+def inMde(f):
+ """Make a path relative to the Mde Pkg root dir."""
+ return inWorkspace(os.path.join("MdePkg", f))
+
+def DoLib(msafile):
+
+ """Create a directory with the sources, AutoGen.h and a makefile."""
+
+ sources = []
+
+ msa = xml.dom.minidom.parse(inMde(msafile))
+ libName = str(XmlElement(msa, "/ModuleSurfaceArea/MsaHeader/ModuleName"))
+ base, _ = os.path.splitext(msafile)
+ msabase = os.path.basename(base)
+
+ suppArch = str(XmlElement(msa, "/ModuleSurfaceArea/ModuleDefinitions/SupportedArchitectures"))
+ if not ARCH in string.split(suppArch, " "):
+ return
+
+ try:
+ os.path.isdir(libName) or os.mkdir(libName);
+ except:
+ print "Error: file %s exists" % libName
+ sys.exit()
+
+
+ for msaFile in XmlList(msa, "/ModuleSurfaceArea/SourceFiles/Filename"):
+
+ msaFileName = str(XmlElementData(msaFile))
+ arch = msaFile.getAttribute("SupArchList")
+ toolchain = msaFile.getAttribute("ToolChainFamily")
+ base, ext = os.path.splitext(msaFileName)
+
+ if arch in ["", ARCH] and (ext in [".c", ".h"] or toolchain in ["GCC"]):
+ if ext in [".c", ".S"]:
+ sources.append(str(base+".o"))
+ targetDir = os.path.join(libName, os.path.dirname(msaFileName))
+ try:
+ os.makedirs(targetDir)
+ except:
+ pass
+ shutil.copy(inMde(os.path.join(os.path.dirname(msafile), msaFileName)),
+ targetDir)
+
+ # Write a Makefile for this module
+ f = open(os.path.join(libName, "Makefile"), "w")
+ f.write(Makefile % (libName, string.join(sources, " ")))
+ f.close()
+
+ # Right now we are getting the AutoGen.h file from a previous build. We
+ # could create it from scratch also.
+ shutil.copy(inWorkspace("Build/Mde/DEBUG_UNIXGCC/%s/MdePkg/Library/%s/%s/DEBUG/AutoGen.h") % (ARCH, libName, msabase), libName)
+
+# This acts like the main() function for the script, unless it is 'import'ed
+# into another script.
+if __name__ == '__main__':
+
+ openMdeSpd();