2003-06-27 21:31:46 +00:00
|
|
|
|
2003-03-12 10:41:04 +00:00
|
|
|
#######################################################################
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000, 2001, 2002, 2003
|
|
|
|
# The LEOX team <team@leox.org>, http://www.leox.org
|
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2003-03-12 10:41:04 +00:00
|
|
|
# LEOX.org is about the development of free hardware and software resources
|
|
|
|
# for system on chip.
|
|
|
|
#
|
|
|
|
# Description: U-Boot port on the LEOX's ELPT860 CPU board
|
|
|
|
# ~~~~~~~~~~~
|
|
|
|
#
|
|
|
|
#######################################################################
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2003-03-12 10:41:04 +00:00
|
|
|
#
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB = $(obj)lib$(BOARD).o
|
2006-09-01 17:49:50 +00:00
|
|
|
|
|
|
|
COBJS = $(BOARD).o flash.o
|
2003-03-12 10:41:04 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
|
|
|
SOBJS := $(addprefix $(obj),$(SOBJS))
|
2003-03-12 10:41:04 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
2010-11-05 14:48:07 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS))
|
2003-03-12 10:41:04 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2003-03-12 10:41:04 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
sinclude $(obj).depend
|
2003-03-12 10:41:04 +00:00
|
|
|
|
|
|
|
#########################################################################
|