]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/bct-brettl2/Makefile
Merge git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / bct-brettl2 / Makefile
1 #
2 # U-boot - Makefile
3 #
4 # Copyright (c) 2005-2008 Analog Device Inc.
5 #
6 # (C) Copyright 2000-2006
7 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 := $(BOARD).o gpio_cfi_flash.o cled.o
17 COBJS-$(CONFIG_BFIN_MAC) += smsc9303.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) $(SOBJS))
25
26 # defines $(obj).depend target
27 include $(SRCTREE)/rules.mk
28
29 sinclude $(obj).depend