Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2007 |
| 3 | # Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | # |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/config.mk |
| 9 | |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 10 | LIB = $(obj)lib$(BOARD).o |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 11 | |
Stefan Roese | 142a2e6 | 2009-07-21 14:06:29 +0200 | [diff] [blame] | 12 | COBJS-y := $(BOARD).o |
| 13 | COBJS-$(CONFIG_CMD_CHIP_CONFIG) += chip_config.o |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 14 | |
Stefan Roese | 142a2e6 | 2009-07-21 14:06:29 +0200 | [diff] [blame] | 15 | COBJS := $(COBJS-y) |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 16 | SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 17 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |
| 18 | |
| 19 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 20 | $(call cmd_link_o_target, $(OBJS)) |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 21 | |
Stefan Roese | 7de9fc7 | 2007-10-05 17:11:30 +0200 | [diff] [blame] | 22 | ######################################################################### |
| 23 | |
| 24 | # defines $(obj).depend target |
| 25 | include $(SRCTREE)/rules.mk |
| 26 | |
| 27 | sinclude $(obj).depend |
| 28 | |
| 29 | ######################################################################### |