VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/BaseTools/Source/C/GNUmakefile@ 77662

Last change on this file since 77662 was 77662, checked in by vboxsync, 6 years ago

EFI: First step in UDK2018 merge. Does not build yet.

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
1## @file
2# GNU/Linux makefile for C tools build.
3#
4# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>
5#
6# This program and the accompanying materials
7# are licensed and made available under the terms and conditions of the BSD License
8# which accompanies this distribution. The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14
15ifndef HOST_ARCH
16 #
17 # If HOST_ARCH is not defined, then we use 'uname -m' to attempt
18 # try to figure out the appropriate HOST_ARCH.
19 #
20 uname_m = $(shell uname -m)
21 $(info Attempting to detect HOST_ARCH from 'uname -m': $(uname_m))
22 ifneq (,$(strip $(filter $(uname_m), x86_64 amd64)))
23 HOST_ARCH=X64
24 endif
25 ifeq ($(patsubst i%86,IA32,$(uname_m)),IA32)
26 HOST_ARCH=IA32
27 endif
28 ifneq (,$(findstring aarch64,$(uname_m)))
29 HOST_ARCH=AARCH64
30 endif
31 ifneq (,$(findstring arm,$(uname_m)))
32 HOST_ARCH=ARM
33 endif
34 ifndef HOST_ARCH
35 $(info Could not detected HOST_ARCH from uname results)
36 $(error HOST_ARCH is not defined!)
37 endif
38 $(info Detected HOST_ARCH of $(HOST_ARCH) using uname.)
39endif
40
41export HOST_ARCH
42
43MAKEROOT = .
44
45include Makefiles/header.makefile
46
47all: makerootdir subdirs
48 @echo Finished building BaseTools C Tools with HOST_ARCH=$(HOST_ARCH)
49
50LIBRARIES = Common
51VFRAUTOGEN = VfrCompile/VfrLexer.h
52# NON_BUILDABLE_APPLICATIONS = GenBootSector BootSectImage
53APPLICATIONS = \
54 BrotliCompress \
55 VfrCompile \
56 GnuGenBootSector \
57 BootSectImage \
58 EfiLdrImage \
59 EfiRom \
60 GenFfs \
61 GenFv \
62 GenFw \
63 GenPage \
64 GenSec \
65 GenCrc32 \
66 GenVtf \
67 LzmaCompress \
68 Split \
69 TianoCompress \
70 VolInfo \
71 DevicePath
72
73SUBDIRS := $(LIBRARIES) $(APPLICATIONS)
74
75$(LIBRARIES): $(MAKEROOT)/libs
76$(APPLICATIONS): $(LIBRARIES) $(MAKEROOT)/bin $(VFRAUTOGEN)
77
78.PHONY: outputdirs
79makerootdir:
80 -mkdir -p $(MAKEROOT)
81
82.PHONY: subdirs $(SUBDIRS)
83subdirs: $(SUBDIRS)
84$(SUBDIRS):
85 $(MAKE) -C $@
86
87.PHONY: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
88$(patsubst %,%-clean,$(sort $(SUBDIRS))):
89 -$(MAKE) -C $(@:-clean=) clean
90
91$(VFRAUTOGEN): VfrCompile/VfrSyntax.g
92 $(MAKE) -C VfrCompile VfrLexer.h
93
94clean: $(patsubst %,%-clean,$(sort $(SUBDIRS)))
95
96clean: localClean
97
98localClean:
99 rm -f $(MAKEROOT)/bin/*
100 -rmdir $(MAKEROOT)/libs $(MAKEROOT)/bin
101
102include Makefiles/footer.makefile
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette