blob: 2b4f0b6b2baa17efa9ccb6f30b18e6a6321433c0 [file] [log] [blame]
Vaibhav Hiremathed01e452010-06-07 15:20:43 -04001#
2# Author: Vaibhav Hiremath <hvaibhav@ti.com>
3#
4# Based on ti/evm/Makefile
5#
6# Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
7#
Wolfgang Denk1a459662013-07-08 09:37:19 +02008# SPDX-License-Identifier: GPL-2.0+
Vaibhav Hiremathed01e452010-06-07 15:20:43 -04009#
10
11include $(TOPDIR)/config.mk
12
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010013LIB = $(obj)lib$(BOARD).o
Vaibhav Hiremathed01e452010-06-07 15:20:43 -040014
15COBJS := am3517evm.o
16
17SRCS := $(COBJS:.o=.c)
18OBJS := $(addprefix $(obj),$(COBJS))
19
20$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010021 $(call cmd_link_o_target, $(OBJS))
Vaibhav Hiremathed01e452010-06-07 15:20:43 -040022
Vaibhav Hiremathed01e452010-06-07 15:20:43 -040023#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend