stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
stroese | aee2fa2 | 2004-12-16 18:17:50 +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 | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/config.mk |
| 9 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 10 | LIB = $(obj)lib$(BOARD).o |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 11 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 12 | COBJS = $(BOARD).o strataflash.o |
| 13 | |
| 14 | SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |
| 15 | OBJS := $(addprefix $(obj),$(COBJS)) |
| 16 | SOBJS := $(addprefix $(obj),$(SOBJS)) |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 17 | |
| 18 | $(LIB): $(OBJS) $(SOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 19 | $(call cmd_link_o_target, $(OBJS)) |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 20 | |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 21 | ######################################################################### |
| 22 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 23 | # defines $(obj).depend target |
| 24 | include $(SRCTREE)/rules.mk |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 25 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 26 | sinclude $(obj).depend |
stroese | aee2fa2 | 2004-12-16 18:17:50 +0000 | [diff] [blame] | 27 | |
| 28 | ######################################################################### |