2010-03-04 12:57:31 +01:00
|
|
|
## @file
|
2013-08-23 04:18:16 +02:00
|
|
|
# GNU/Linux makefile for Base Tools project build.
|
2010-03-04 12:57:31 +01:00
|
|
|
#
|
2017-11-28 04:18:51 +01:00
|
|
|
# Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-03-04 12:57:31 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
all: subdirs
|
|
|
|
|
|
|
|
LANGUAGES = C Python
|
|
|
|
|
|
|
|
SOURCE_SUBDIRS := $(patsubst %,Source/%,$(sort $(LANGUAGES)))
|
|
|
|
SUBDIRS := $(SOURCE_SUBDIRS) Tests
|
|
|
|
CLEAN_SUBDIRS := $(patsubst %,%-clean,$(sort $(SUBDIRS)))
|
|
|
|
|
|
|
|
.PHONY: subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
|
|
$(MAKE) -C $@
|
|
|
|
|
2017-11-28 04:18:51 +01:00
|
|
|
Tests: $(SOURCE_SUBDIRS)
|
|
|
|
|
2010-03-04 12:57:31 +01:00
|
|
|
.PHONY: $(CLEAN_SUBDIRS)
|
|
|
|
$(CLEAN_SUBDIRS):
|
|
|
|
-$(MAKE) -C $(@:-clean=) clean
|
|
|
|
|
|
|
|
clean: $(CLEAN_SUBDIRS)
|