VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/BaseTools/GNUmakefile

Last change on this file was 80721, checked in by vboxsync, 5 years ago

Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643

  • Property svn:eol-style set to native
File size: 579 bytes
Line 
1## @file
2# GNU/Linux makefile for Base Tools project build.
3#
4# Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>
5# SPDX-License-Identifier: BSD-2-Clause-Patent
6#
7
8all: subdirs
9
10LANGUAGES = C Python
11
12SOURCE_SUBDIRS := $(patsubst %,Source/%,$(sort $(LANGUAGES)))
13SUBDIRS := $(SOURCE_SUBDIRS) Tests
14CLEAN_SUBDIRS := $(patsubst %,%-clean,$(sort $(SUBDIRS)))
15
16.PHONY: subdirs $(SUBDIRS)
17subdirs: $(SUBDIRS)
18$(SUBDIRS):
19 $(MAKE) -C $@
20
21Tests: $(SOURCE_SUBDIRS)
22
23.PHONY: $(CLEAN_SUBDIRS)
24$(CLEAN_SUBDIRS):
25 -$(MAKE) -C $(@:-clean=) clean
26
27clean: $(CLEAN_SUBDIRS)
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use