source: EcnlProtoTool/trunk/asp3_dcre/arch/arm_gcc/rza1/Makefile.chip@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-makefile
File size: 844 bytes
Line 
1#
2# Makefile のチップ依存部(RZ/A1用)
3#
4# $Id: Makefile.chip 720 2016-04-01 22:16:17Z ertl-hiro $
5#
6
7#
8# チップ依存部ディレクトリ名の定義
9#
10CHIPDIR = $(SRCDIR)/arch/$(CORE)_$(TOOL)/$(CHIP)
11
12#
13# コンパイルオプション
14#
15INCLUDES := $(INCLUDES) -I$(CHIPDIR)
16COPTS := $(COPTS) -mcpu=cortex-a9
17LDFLAGS := $(LDFLAGS) -mcpu=cortex-a9
18CDEFS := $(CDEFS) -D__TARGET_ARCH_ARM=7
19
20#
21# カーネルに関する定義
22#
23KERNEL_DIRS := $(KERNEL_DIRS) $(CHIPDIR)
24KERNEL_ASMOBJS := $(KERNEL_ASMOBJS) gic_support.o
25KERNEL_COBJS := $(KERNEL_COBJS) chip_kernel_impl.o gic_kernel_impl.o \
26 chip_timer.o
27
28#
29# コンフィギュレータ関係の変数の定義
30#
31CFG_TABS := $(CFG_TABS) --symval-table $(CHIPDIR)/chip_sym.def
32
33#
34# コア依存部
35#
36include $(SRCDIR)/arch/$(CORE)_$(TOOL)/common/Makefile.core
Note: See TracBrowser for help on using the repository browser.