]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/blackfin/cpu/Makefile
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / blackfin / cpu / 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 # Licensed under the GPL-2 or later.
10 #
11
12 extra-y := init.elf
13 extra-y += initcode.o
14 extra-y += start.o
15 obj-y    := interrupt.o cache.o
16 obj-y  += cpu.o
17 obj-y += gpio.o
18 obj-y  += interrupts.o
19 obj-$(CONFIG_JTAG_CONSOLE) += jtag-console.o
20 obj-y  += os_log.o
21 obj-y  += reset.o
22 obj-y  += traps.o
23
24 extra-y += check_initcode
25 clean-files := init.lds
26
27 # make sure our initcode (which goes into LDR) does not
28 # have relocs or external references
29 CFLAGS_REMOVE_initcode.o := -ffunction-sections -fdata-sections
30 READINIT = env LC_ALL=C $(CROSS_COMPILE)readelf -s $<
31 $(obj)/check_initcode: $(obj)/initcode.o
32 ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
33         @if $(READINIT) | grep '\<GLOBAL\>.*\<UND\>' ; then \
34                 echo "$< contains external references!" 1>&2 ; \
35                 exit 1 ; \
36         fi
37 endif
38
39 CPPFLAGS_init.lds := -ansi
40
41 quiet_cmd_link_init = LD      $@
42       cmd_link_init = $(LD) $(LDFLAGS) -T $^ -o $@
43 $(obj)/init.elf: $(obj)/init.lds $(obj)/init.o $(obj)/initcode.o
44         $(call if_changed,link_init)
45 targets += init.lds init.o