blob: 5019b315f6fe9e45a228391cc6cf80c096222acd [file] [log] [blame]
Wolfgang Denk86ea5f92006-02-22 00:43:16 +01001#
2# (C) Copyright 2003-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk86ea5f92006-02-22 00:43:16 +01006#
7
8include $(TOPDIR)/config.mk
9
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010010LIB = $(obj)lib$(BOARD).o
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010011
Andrei Safronovcdb97a62006-12-08 16:23:08 +010012COBJS := $(BOARD).o lcd.o auto_update.o
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010013
Marian Balakowiczf9328632006-09-01 19:49:50 +020014SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16SOBJS := $(addprefix $(obj),$(SOBJS))
17
18$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010019 $(call cmd_link_o_target, $(OBJS))
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010020
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010021#########################################################################
22
Marian Balakowiczf9328632006-09-01 19:49:50 +020023# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010025
Marian Balakowiczf9328632006-09-01 19:49:50 +020026sinclude $(obj).depend
Wolfgang Denk86ea5f92006-02-22 00:43:16 +010027
28#########################################################################