2010-09-28 21:15:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2010, Applied Micro Circuits Corporation
|
|
|
|
# Author: Tirumala R Marri <tmarri@apm.com>
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2010-09-28 21:15:21 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB = $(obj)lib$(BOARD).o
|
2010-09-28 21:15:21 +00:00
|
|
|
|
|
|
|
COBJS-y := $(BOARD).o
|
|
|
|
SOBJS := init.o
|
|
|
|
|
|
|
|
COBJS := $(COBJS-y)
|
|
|
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
|
|
|
|
2010-11-21 19:55:42 +00:00
|
|
|
all: $(LIB) $(SOBJS)
|
|
|
|
|
|
|
|
$(LIB): $(OBJS)
|
|
|
|
$(call cmd_link_o_target, $^)
|
2010-09-28 21:15:21 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
|
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|