base-hw: remove unused library startup_core

Fix #560
This commit is contained in:
Martin Stein 2012-12-07 14:20:21 +01:00 committed by Norman Feske
parent 5459291f9d
commit e7bdae62ea

View File

@ -1,29 +0,0 @@
#
# \brief Essential platform specific sources for core
# \author Martin Stein
# \date 2012-04-16
#
# Aad C++ sources
SRC_CC += syscall.cc
# add assembly sources
SRC_S += crt0.s mode_transition.s boot_modules.s
# add inlucde paths
INC_DIR += $(BASE_DIR)/src/core/include/
#
# Check if there are other images wich shall be linked to core.
# If not use a dummy boot-modules file wich includes only the symbols.
#
ifeq ($(wildcard $(BUILD_BASE_DIR)/boot_modules.s),)
vpath boot_modules.s $(REP_DIR)/src/core/arm_v7a
else
INC_DIR += $(BUILD_BASE_DIR)
vpath boot_modules.s $(BUILD_BASE_DIR)
endif
# declare remaining source paths
vpath syscall.cc $(REP_DIR)/src/base/arm_v7a
vpath % $(REP_DIR)/src/core/arm_v7a