| ## @file | |
| # GNU/Linux makefile for C tools build. | |
| # | |
| # Copyright (c) 2007 - 2025, Intel Corporation. All rights reserved.<BR> | |
| # | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent | |
| # | |
| ifeq (Windows, $(findstring Windows,$(MAKE_HOST))) | |
| SHELL := cmd.exe | |
| MAKEROOT := $(shell echo %CD%) | |
| else | |
| MAKEROOT := . | |
| endif | |
| include Makefiles/header.makefile | |
| export PYTHON_COMMAND | |
| export HOST_ARCH | |
| 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: | |
| -$(MD) $(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) $(MAKEROOT)/bin/* | |
| -$(RD) $(MAKEROOT)/libs $(MAKEROOT)/bin | |
| include Makefiles/footer.makefile |