2007-01-11 14:44:44 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2000
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2007-01-11 14:44:44 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB = $(obj)lib$(BOARD).o
|
2007-01-11 14:44:44 +00:00
|
|
|
|
2007-03-13 15:05:55 +00:00
|
|
|
COBJS = $(BOARD).o sc3nand.o
|
2007-01-11 14:44:44 +00:00
|
|
|
SOBJS = init.o
|
|
|
|
|
2007-03-13 15:05:55 +00:00
|
|
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
|
|
|
|
2007-01-11 14:44:44 +00:00
|
|
|
$(LIB): $(OBJS) $(SOBJS)
|
2010-11-05 14:48:07 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS) $(SOBJS))
|
2007-01-11 14:44:44 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
2007-03-13 15:05:55 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2007-01-11 14:44:44 +00:00
|
|
|
|
2007-03-13 15:05:55 +00:00
|
|
|
sinclude $(obj).depend
|
2007-01-11 14:44:44 +00:00
|
|
|
|
|
|
|
#########################################################################
|