mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
623e0be0e1
Issue #2372
69 lines
1.8 KiB
PHP
69 lines
1.8 KiB
PHP
#
|
|
# Utility for building L4 contrib packages
|
|
#
|
|
# Variables that steer the behaviour of this makefile:
|
|
#
|
|
# TARGET - name of target
|
|
# PKGS - list of L4 packages to visit in order to create
|
|
# the target
|
|
#
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
L4_BUILD_ARCH := x86
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
L4_BUILD_ARCH := arm
|
|
endif
|
|
|
|
ifeq ($(L4_BUILD_ARCH),)
|
|
$(error L4_BUILD_ARCH undefined, architecture not supported)
|
|
endif
|
|
|
|
ifndef L4_BUILD_DIR
|
|
$(error L4_BUILD_DIR undefined)
|
|
endif
|
|
|
|
L4_PKG_DIR = $(L4_SRC_DIR)/l4/pkg
|
|
PKG_TAGS = $(addsuffix .tag,$(PKGS))
|
|
|
|
BUILD_OUTPUT_FILTER = 2>&1 | sed "s~^~ [$*] ~"
|
|
|
|
ifeq ($(VERBOSE),)
|
|
L4_VERBOSE = V=1
|
|
endif
|
|
|
|
#
|
|
# Execute the rules in this file only at the second build stage when we know
|
|
# about the complete build settings, e.g., 'CROSS_DEV_PREFIX'.
|
|
#
|
|
ifeq ($(called_from_lib_mk),yes)
|
|
all: $(PKG_TAGS)
|
|
endif
|
|
|
|
#
|
|
# We preserve the order of processing 'l4/pkg/' directories because of
|
|
# inter-package dependencies. However, within each directory, make is working
|
|
# in parallel.
|
|
#
|
|
.NOTPARALLEL: $(PKG_TAGS)
|
|
|
|
#
|
|
# The '_GNU_SOURCE' definition is needed to convince uClibc to define the
|
|
# 'off64_t' type, which is used by bootstrap.
|
|
#
|
|
%.tag:
|
|
$(VERBOSE_MK) set -o pipefail; \
|
|
MAKEFLAGS= CPPFLAGS="$(CC_MARCH)" \
|
|
CFLAGS="$(CC_MARCH) -std=gnu89" \
|
|
CXXFLAGS="$(CC_MARCH) -D_GNU_SOURCE -std=gnu++98" \
|
|
ASFLAGS="$(CC_MARCH)" LDFLAGS="$(LD_MARCH)" \
|
|
$(MAKE) $(VERBOSE_DIR) O=$(L4_BUILD_DIR) $(L4_VERBOSE) \
|
|
-C $(L4_PKG_DIR)/$* \
|
|
CC="$(CROSS_DEV_PREFIX)gcc" \
|
|
CXX="$(CROSS_DEV_PREFIX)g++" \
|
|
LD="$(CROSS_DEV_PREFIX)ld" \
|
|
$(BUILD_OUTPUT_FILTER)
|
|
$(VERBOSE)mkdir -p $(dir $@) && touch $@
|
|
|