mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
#
|
|
# \brief Environment for executing content.mk files
|
|
# \author Norman Feske
|
|
# \date 2006-05-13
|
|
#
|
|
# The file is executed from within the archive directory.
|
|
# The following variables must be defined by the caller:
|
|
#
|
|
# GENODE_DIR - root directory of the Genode source tree
|
|
# CONTRIB_DIR - collection of 3rd-party ports, usually $(GENODE_DIR)/contrib
|
|
# CONTENT_MK - content.mk file to execute
|
|
# VERBOSE - verbosity
|
|
#
|
|
|
|
|
|
#
|
|
# Check presence of argument $1. Back out with error message $2 if not defined.
|
|
#
|
|
_assert = $(if $1,$1,$(error Error: $2))
|
|
|
|
#
|
|
# Message that a port is missing or outdated and instructions how to fix it
|
|
#
|
|
# \param 1 name of the port
|
|
#
|
|
define _port_missing_msg
|
|
|
|
|
|
Port not prepared or outdated:
|
|
$(1)
|
|
|
|
You can prepare respectively update it as follows:
|
|
$(GENODE_DIR)/tool/ports/prepare_port $(1)
|
|
|
|
|
|
endef
|
|
|
|
#
|
|
# Utility to query the port directory for a given path to a port description.
|
|
#
|
|
# Example:
|
|
#
|
|
# $(call port_dir,$(GENODE_DIR)/repos/libports/ports/libpng)
|
|
#
|
|
_hash_of_port = $(shell cat $(call _assert,$(wildcard $1.hash),$(notdir $1) port does not exist))
|
|
_port_dir = $(wildcard $(CONTRIB_DIR)/$(notdir $1)-$(call _hash_of_port,$1))
|
|
_checked_port_dir = $(call _assert,$(call _port_dir,$1),$(call _port_missing_msg,$(notdir $1)))
|
|
|
|
port_dir = $(call _checked_port_dir,$1)
|
|
|
|
|
|
#
|
|
# Handy shortcuts to be used in content.mk files
|
|
#
|
|
mirror_from_rep_dir = mkdir -p $(dir $@); cp -r $(REP_DIR)/$@ $(dir $@)
|
|
|
|
|
|
#
|
|
# Execute recipe's content.mk rules for populating the archive directory
|
|
#
|
|
include $(CONTENT_MK)
|
|
|
|
#
|
|
# Prevent parallel execution of content rules to prevent unexpected surprises
|
|
#
|
|
.NOTPARALLEL:
|