mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
The build config for core is now provided through libraries to enable implicit config composition through specifiers and thereby avoid consideration of inappropriate targets. fix #1199
19 lines
423 B
PHP
19 lines
423 B
PHP
#
|
|
# \brief Build config for Genodes core process
|
|
# \author Martin Stein
|
|
# \date 2011-12-16
|
|
#
|
|
|
|
# add include paths
|
|
INC_DIR += $(REP_DIR)/src/core/arm
|
|
|
|
# declare source paths
|
|
vpath cpu_support.cc $(REP_DIR)/src/core/arm
|
|
vpath crt0.s $(REP_DIR)/src/core/arm
|
|
|
|
# use dummy boot-modules per default
|
|
BOOT_MODULES_VPATH = $(REP_DIR)/src/core/arm
|
|
|
|
# include less specific library parts
|
|
include $(REP_DIR)/lib/mk/core.inc
|