blob: ec2e510cd64421ef35792a125df232945a37536c [file] [log] [blame]
Igor Grinberg689be5f2013-09-16 21:49:58 +03001#
2# (C) Copyright 2011 - 2013 CompuLab, Ltd. <www.compulab.co.il>
3#
4# Author: Igor Grinberg <grinberg@compulab.co.il>
5#
6# SPDX-License-Identifier: GPL-2.0+
7#
8
9include $(TOPDIR)/config.mk
10
11ifneq ($(OBJTREE),$(SRCTREE))
12$(shell mkdir -p $(obj)board/$(VENDOR)/common)
13endif
14
15LIB = $(obj)lib$(VENDOR).o
16
17COBJS-$(CONFIG_DRIVER_OMAP34XX_I2C) += eeprom.o
18
19COBJS := $(COBJS-y)
20SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
21OBJS := $(addprefix $(obj),$(COBJS))
22SOBJS := $(addprefix $(obj),$(SOBJS))
23
24all: $(LIB)
25
26$(LIB): $(obj).depend $(OBJS) $(SOBJS)
27 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
28
29#########################################################################
30# This is for $(obj).depend target
31include $(SRCTREE)/rules.mk
32
33sinclude $(obj).depend
34
35#########################################################################