xref: /lk-master/platform/alterasoc/rules.mk
  • Home
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • current directory
1LOCAL_DIR := $(GET_LOCAL_DIR)
2
3MODULE := $(LOCAL_DIR)
4
5ARCH := arm
6ARM_CPU := cortex-a9-neon
7WITH_SMP := 1
8
9MODULE_DEPS := \
10	lib/cbuf \
11	dev/interrupt/arm_gic \
12	dev/timer/arm_cortex_a9
13
14MODULE_SRCS += \
15	$(LOCAL_DIR)/clocks.c \
16	$(LOCAL_DIR)/debug.c \
17	$(LOCAL_DIR)/platform.c \
18	$(LOCAL_DIR)/uart.c
19
20MEMBASE := 0x0
21MEMSIZE ?= 0x10000000	# 256MB
22
23LINKER_SCRIPT += \
24	$(BUILDDIR)/system-onesegment.ld
25
26include make/module.mk
27

Last Index update Sun Aug 20 00:18:20 CST 2023