]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/atmel/at91sam9rlek/Makefile
7f6ea90a25e8daa896a861404c0a4d061cab3773
[karo-tx-uboot.git] / board / atmel / at91sam9rlek / Makefile
1 #
2 # (C) Copyright 2003-2008
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2008
6 # Stelian Pop <stelian@popies.net>
7 # Lead Tech Design <www.leadtechdesign.com>
8 #
9 # SPDX-License-Identifier:      GPL-2.0+
10 #
11
12 include $(TOPDIR)/config.mk
13
14 LIB     = $(obj)lib$(BOARD).o
15
16 COBJS-y += at91sam9rlek.o
17 COBJS-y += led.o
18 COBJS-$(CONFIG_HAS_DATAFLASH) += partition.o
19
20 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
21 OBJS    := $(addprefix $(obj),$(COBJS-y))
22 SOBJS   := $(addprefix $(obj),$(SOBJS))
23
24 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
25         $(call cmd_link_o_target, $(OBJS) $(SOBJS))
26
27 #########################################################################
28
29 # defines $(obj).depend target
30 include $(SRCTREE)/rules.mk
31
32 sinclude $(obj).depend
33
34 #########################################################################