2010-01-26 06:12:58 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2009 DENX Software Engineering
|
|
|
|
# Author: John Rigby <jcrigby@gmail.com>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2010-01-26 06:12:58 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB = $(obj)lib$(BOARD).o
|
2010-01-26 06:12:58 +00:00
|
|
|
|
2013-04-11 09:35:51 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
2010-01-26 06:12:58 +00:00
|
|
|
SOBJS := lowlevel_init.o
|
2013-04-11 09:35:51 +00:00
|
|
|
endif
|
|
|
|
COBJS := tx25.o
|
2010-01-26 06:12:58 +00:00
|
|
|
|
|
|
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
|
|
|
|
|
|
|
$(LIB): $(obj).depend $(OBJS) $(SOBJS)
|
2010-11-05 14:48:07 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
|
2010-01-26 06:12:58 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
|
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|