Makefile 608 Bytes
Newer Older
1 2 3 4 5 6 7
#
# (C) Copyright 2000-2003
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# (C) Copyright 2008
# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
#
8
# SPDX-License-Identifier:	GPL-2.0+
9 10
#

11 12 13 14
obj-y	:= timer.o
obj-y	+= cpu.o
obj-y	+= ddrc.o
obj-y	+= slcr.o
15

16 17
#use CONFIG_EZYNQ for the first (spl) u-boot pass or the only one (if spl building disabled)
ifeq ($(CONFIG_SPL),)
18
	obj-$(CONFIG_EZYNQ)	+= ezynq.o
19 20
endif
ifneq ($(CONFIG_SPL_BUILD),)
21
	obj-$(CONFIG_EZYNQ)	+= ezynq.o
22 23
endif

24 25
obj-y	+= clk.o
obj-y	+= lowlevel_init.o
26
AFLAGS_lowlevel_init.o := -mfpu=neon
27
obj-$(CONFIG_SPL_BUILD)	+= spl.o