]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/xes/xpedite537x/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / xes / xpedite537x / Makefile
1 #
2 # Copyright 2008 Extreme Engineering Solutions, Inc.
3 # Copyright 2007 Freescale Semiconductor, Inc.
4 # (C) Copyright 2001-2006
5 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS-y += $(BOARD).o
15 COBJS-y += ddr.o
16 COBJS-y += law.o
17 COBJS-y += tlb.o
18
19 SRCS    := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
20 OBJS    := $(addprefix $(obj),$(COBJS-y))
21 SOBJS   := $(addprefix $(obj),$(SOBJS-y))
22
23 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
24         $(call cmd_link_o_target, $(OBJS))
25
26 #########################################################################
27
28 # defines $(obj).depend target
29 include $(SRCTREE)/rules.mk
30
31 sinclude $(obj).depend
32
33 #########################################################################