blob: 79aa8362ed1c272338623c79b74c62f8bdba53d1 [file] [log] [blame]
TsiChungLiewf7d060c2008-01-14 17:19:54 -06001#
2# (C) Copyright 2000-2003
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
TsiChungLiewf7d060c2008-01-14 17:19:54 -06006#
7
8include $(TOPDIR)/config.mk
9
Sebastien Carliera8d426f2010-11-05 15:48:07 +010010LIB = $(obj)lib$(BOARD).o
TsiChungLiewf7d060c2008-01-14 17:19:54 -060011
TsiChung Liewa1c01a42008-10-21 12:15:44 +000012COBJS = $(BOARD).o nand.o
TsiChungLiewf7d060c2008-01-14 17:19:54 -060013
14SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16SOBJS := $(addprefix $(obj),$(SOBJS))
17
18$(LIB): $(obj).depend $(OBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010019 $(call cmd_link_o_target, $(OBJS))
TsiChungLiewf7d060c2008-01-14 17:19:54 -060020
21#########################################################################
22
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend
27
28#########################################################################