mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-10-31 01:35:30 +00:00 
			
		
		
		
	 5b4a97bbc3
			
		
	
	
		5b4a97bbc3
		
	
	
	
	
		
			
			REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3165 There are 2 reasons to convert Split tool from C to Python. 1. We are in the process of moving the Basetools Python code to a separate repository. But there still are many C tools under edk2/BaseTools. To make all Basetools be in the separate repo, we can convert the C tools to Python tools. 2. The original Split tool is very slow. This python tool can reduce 90% time. Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Yuwei Chen <yuwei.chen@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Reviewed-by: Yuwei Chen <yuwei.chen@intel.com>
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ## @file
 | |
| #  GNU/Linux makefile for C tools build.
 | |
| #
 | |
| #  Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
 | |
| #
 | |
| #  SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| #
 | |
| 
 | |
| ifndef HOST_ARCH
 | |
|   #
 | |
|   # If HOST_ARCH is not defined, then we use 'uname -m' to attempt
 | |
|   # try to figure out the appropriate HOST_ARCH.
 | |
|   #
 | |
|   uname_m = $(shell uname -m)
 | |
|   $(info Attempting to detect HOST_ARCH from 'uname -m': $(uname_m))
 | |
|   ifneq (,$(strip $(filter $(uname_m), x86_64 amd64)))
 | |
|     HOST_ARCH=X64
 | |
|   endif
 | |
|   ifeq ($(patsubst i%86,IA32,$(uname_m)),IA32)
 | |
|     HOST_ARCH=IA32
 | |
|   endif
 | |
|   ifneq (,$(findstring aarch64,$(uname_m)))
 | |
|     HOST_ARCH=AARCH64
 | |
|   else ifneq (,$(findstring arm64,$(uname_m)))
 | |
|     HOST_ARCH=AARCH64
 | |
|   else ifneq (,$(findstring arm,$(uname_m)))
 | |
|     HOST_ARCH=ARM
 | |
|   endif
 | |
|   ifneq (,$(findstring riscv64,$(uname_m)))
 | |
|     HOST_ARCH=RISCV64
 | |
|   endif
 | |
|   ifndef HOST_ARCH
 | |
|     $(info Could not detected HOST_ARCH from uname results)
 | |
|     $(error HOST_ARCH is not defined!)
 | |
|   endif
 | |
|   $(info Detected HOST_ARCH of $(HOST_ARCH) using uname.)
 | |
| endif
 | |
| 
 | |
| export HOST_ARCH
 | |
| 
 | |
| MAKEROOT = .
 | |
| 
 | |
| include Makefiles/header.makefile
 | |
| 
 | |
| all: makerootdir subdirs
 | |
| 	@echo Finished building BaseTools C Tools with HOST_ARCH=$(HOST_ARCH)
 | |
| 
 | |
| LIBRARIES = Common
 | |
| VFRAUTOGEN = VfrCompile/VfrLexer.h
 | |
| APPLICATIONS = \
 | |
|   BrotliCompress \
 | |
|   VfrCompile \
 | |
|   EfiRom \
 | |
|   GenFfs \
 | |
|   GenFv \
 | |
|   GenFw \
 | |
|   GenSec \
 | |
|   GenCrc32 \
 | |
|   LzmaCompress \
 | |
|   TianoCompress \
 | |
|   VolInfo \
 | |
|   DevicePath
 | |
| 
 | |
| SUBDIRS := $(LIBRARIES) $(APPLICATIONS)
 | |
| 
 | |
| $(LIBRARIES): $(MAKEROOT)/libs
 | |
| $(APPLICATIONS): $(LIBRARIES) $(MAKEROOT)/bin $(VFRAUTOGEN)
 | |
| 
 | |
| .PHONY: outputdirs
 | |
| makerootdir:
 | |
| 	-mkdir -p $(MAKEROOT)
 | |
| 
 | |
| .PHONY: subdirs $(SUBDIRS)
 | |
| subdirs: $(SUBDIRS)
 | |
| $(SUBDIRS):
 | |
| 	$(MAKE) -C $@
 | |
| 
 | |
| .PHONY: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
 | |
| $(patsubst %,%-clean,$(sort $(SUBDIRS))):
 | |
| 	-$(MAKE) -C $(@:-clean=) clean
 | |
| 
 | |
| $(VFRAUTOGEN): VfrCompile/VfrSyntax.g
 | |
| 	$(MAKE) -C VfrCompile VfrLexer.h
 | |
| 
 | |
| clean:  $(patsubst %,%-clean,$(sort $(SUBDIRS)))
 | |
| 
 | |
| clean: localClean
 | |
| 
 | |
| localClean:
 | |
| 	rm -f $(MAKEROOT)/bin/*
 | |
| 	-rmdir $(MAKEROOT)/libs $(MAKEROOT)/bin
 | |
| 
 | |
| include Makefiles/footer.makefile
 |