genode/ports/src/vancouver/target.inc

46 lines
1.3 KiB
PHP
Raw Normal View History

2011-12-22 16:19:25 +01:00
TARGET = vancouver
CONTRIB_DIR = $(REP_DIR)/contrib/seoul-git
VANCOUVER_DIR = $(CONTRIB_DIR)
GENODE_DIR = $(CONTRIB_DIR)/genode
NOVA_INCLUDE_DIR = $(REP_DIR)/contrib/seoul-git/include
2011-12-22 16:19:25 +01:00
REQUIRES += nova
2011-12-22 16:19:25 +01:00
ifeq ($(wildcard $(VANCOUVER_DIR)),)
REQUIRES += prepare_ports_vancouver
endif
LIBS += base blit alarm seoul_libc_support
SRC_CC = main.cc nova_user_env.cc device_model_registry.cc
SRC_CC += console.cc keyboard.cc network.cc disk.cc
SRC_BIN = mono.tff
2011-12-22 16:19:25 +01:00
MODEL_SRC_CC += $(notdir $(wildcard $(VANCOUVER_DIR)/model/*.cc))
EXECUTOR_SRC_CC += $(notdir $(wildcard $(VANCOUVER_DIR)/executor/*.cc))
SERVICE_SRC_CC += sink.cc
ifneq ($(filter x86_64, $(SPECS)),)
FILTER_OUT += model/intel82576vf.cc
CC_CXX_OPT += -mcmodel=large
endif
2011-12-22 16:19:25 +01:00
SRC_CC += $(filter-out $(FILTER_OUT),$(addprefix model/,$(MODEL_SRC_CC)))
SRC_CC += $(filter-out $(FILTER_OUT),$(addprefix executor/,$(EXECUTOR_SRC_CC)))
SRC_CC += model/sink.cc
2011-12-22 16:19:25 +01:00
INC_DIR += $(PRG_DIR)/..
INC_DIR += $(PRG_DIR)/../executor
2011-12-22 16:19:25 +01:00
INC_DIR += $(VANCOUVER_DIR)/model
INC_DIR += $(VANCOUVER_DIR)/executor
INC_DIR += $(VANCOUVER_DIR)/include $(GENODE_DIR)/include
2011-12-22 16:19:25 +01:00
INC_DIR += $(NOVA_INCLUDE_DIR)
CC_WARN += -Wno-parentheses
CC_CXX_OPT += -std=gnu++11
2011-12-22 16:19:25 +01:00
vpath %.cc $(VANCOUVER_DIR)
vpath %.cc $(CONTRIB_DIR)
vpath %.cc $(PRG_DIR)/..
vpath %.tff $(PRG_DIR)/..