stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 9 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 10 | $(shell mkdir -p $(obj)../common) |
| 11 | endif |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 12 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 13 | LIB = $(obj)lib$(BOARD).o |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 14 | |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 15 | COBJS = $(BOARD).o flash.o \ |
| 16 | ../common/misc.o \ |
| 17 | ../common/esd405ep_nand.o \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 18 | |
| 19 | SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |
| 20 | OBJS := $(addprefix $(obj),$(COBJS)) |
| 21 | SOBJS := $(addprefix $(obj),$(SOBJS)) |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 22 | |
| 23 | $(LIB): $(OBJS) $(SOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 24 | $(call cmd_link_o_target, $(OBJS)) |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 25 | |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 26 | ######################################################################### |
| 27 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 28 | # defines $(obj).depend target |
| 29 | include $(SRCTREE)/rules.mk |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 30 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 31 | sinclude $(obj).depend |
stroese | 22a40b0 | 2003-09-12 08:42:13 +0000 | [diff] [blame] | 32 | |
| 33 | ######################################################################### |