blob: f6841067f3a685e55f8a7aee3d7cad2ffa04d9c1 [file] [log] [blame]
Mike Frysinger9171fc82008-03-30 15:46:13 -04001#
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
12include $(TOPDIR)/config.mk
13
14LIB = $(obj)lib$(CPU).a
15
16EXTRA :=
17CEXTRA := initcode.o
18SEXTRA := start.o
Mike Frysinger2c1ea9e2008-08-07 17:52:59 -040019SOBJS := interrupt.o cache.o
Mike Frysinger909878f2009-07-09 01:15:05 -040020COBJS-y := cpu.o traps.o interrupts.o os_log.o reset.o serial.o watchdog.o
Mike Frysinger36ea8e92008-10-11 21:51:20 -040021COBJS-$(CONFIG_JTAG_CONSOLE) += jtag-console.o
Mike Frysinger9171fc82008-03-30 15:46:13 -040022
23ifeq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
Mike Frysinger36ea8e92008-10-11 21:51:20 -040024COBJS-y += initcode.o
Mike Frysinger9171fc82008-03-30 15:46:13 -040025endif
26
Mike Frysinger36ea8e92008-10-11 21:51:20 -040027SRCS := $(SEXTRA:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
28OBJS := $(addprefix $(obj),$(COBJS-y) $(SOBJS))
Mike Frysinger9171fc82008-03-30 15:46:13 -040029EXTRA := $(addprefix $(obj),$(EXTRA))
30CEXTRA := $(addprefix $(obj),$(CEXTRA))
31SEXTRA := $(addprefix $(obj),$(SEXTRA))
32
33all: $(obj).depend $(LIB) $(obj).depend $(EXTRA) $(CEXTRA) $(SEXTRA) check_initcode
34
35$(LIB): $(OBJS)
36 $(AR) $(ARFLAGS) $@ $(OBJS)
37
38$(OBJS): $(obj)bootrom-asm-offsets.h
39$(obj)bootrom-asm-offsets.c: bootrom-asm-offsets.c.in bootrom-asm-offsets.awk
40 echo '#include <asm/mach-common/bits/bootrom.h>' | $(CPP) $(CPPFLAGS) - | gawk -f ./bootrom-asm-offsets.awk > $@.tmp
41 mv $@.tmp $@
42$(obj)bootrom-asm-offsets.s: $(obj)bootrom-asm-offsets.c
43 $(CC) $(CFLAGS) -S $^ -o $@.tmp
44 mv $@.tmp $@
45$(obj)bootrom-asm-offsets.h: $(obj)bootrom-asm-offsets.s
46 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" $^ > $@
47
48# make sure our initcode (which goes into LDR) does not
49# have relocs or external references
Mike Frysinger6957a622008-10-24 18:18:16 -040050$(obj)initcode.o: CFLAGS += -fno-function-sections -fno-data-sections
Mike Frysinger9171fc82008-03-30 15:46:13 -040051READINIT = env LC_ALL=C $(CROSS_COMPILE)readelf -s $<
52check_initcode: $(obj)initcode.o
53ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
54 @if $(READINIT) | grep '\<GLOBAL\>.*\<UND\>' ; then \
55 echo "$< contains external references!" 1>&2 ; \
56 exit 1 ; \
57 fi
58endif
59
60#########################################################################
61
62# defines $(obj).depend target
63include $(SRCTREE)/rules.mk
64
65sinclude $(obj).depend
66
67#########################################################################