blob: 4b901d25e8fb20c615eb41419b1e1a92157bb034 [file] [log] [blame]
John Rigbyafbf8892011-04-19 10:42:42 +00001#
2# Copyright (C) ST-Ericsson SA 2009
3#
Wolfgang Denk1a459662013-07-08 09:37:19 +02004# SPDX-License-Identifier: GPL-2.0+
John Rigbyafbf8892011-04-19 10:42:42 +00005#
6
7include $(TOPDIR)/config.mk
8
9CFLAGS += -D__RELEASE -D__STN_8500
10LIB = $(obj)lib$(BOARD).o
11
Mathieu J. Poirier42cb8fb2012-07-31 08:59:24 +000012COBJS := u8500_href.o gpio.o
John Rigbyafbf8892011-04-19 10:42:42 +000013
14SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16SOBJS := $(addprefix $(obj),$(SOBJS))
17
18$(LIB): $(obj).depend $(OBJS) $(SOBJS)
19 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
20
John Rigbyafbf8892011-04-19 10:42:42 +000021#########################################################################
22
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend
27
28#########################################################################