genode/base-hw/src/core/vea9x4/no_trustzone/target.mk
Martin Stein 7f2f2d9120 base-hw: ease core build
Merge core only libs into the target make-files.

Use base-hw specific Board drivers that inherit
from generic Board_base.

Use Page_flags::access_t instead of additional
page_flags_t.

Fix #570
2013-01-08 11:36:52 +01:00

24 lines
577 B
Makefile

#
# \brief Build config for Genodes core process
# \author Stefan Kalkowski
# \author Martin Stein
# \date 2012-10-04
#
# declare wich specs must be given to build this target
REQUIRES += platform_vea9x4
ifeq ($(filter-out $(SPECS),trustzone),)
REQUIRES += no_trustone
endif
# add include paths
INC_DIR += $(REP_DIR)/src/core/vea9x4/no_trustzone
# declare source paths
vpath platform_support.cc $(REP_DIR)/src/core/vea9x4/no_trustzone
vpath platform_services.cc $(BASE_DIR)/src/core
# include less specific target parts
include $(REP_DIR)/src/core/vea9x4/target.inc