blob: baaa2fbe4def0c7c9707603293a75287daf6d182 [file] [log] [blame]
wdenk717b5aa2002-04-27 11:09:31 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk717b5aa2002-04-27 11:09:31 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
wdenk717b5aa2002-04-27 11:09:31 +000024include $(TOPDIR)/config.mk
25
Mike Frysinger557555f2009-09-04 19:54:45 -040026ELF-$(ARCH) :=
27ELF-$(BOARD) :=
28ELF-$(CPU) :=
29ELF-y := hello_world
wdenk717b5aa2002-04-27 11:09:31 +000030
Mike Frysinger557555f2009-09-04 19:54:45 -040031ELF-$(CONFIG_SMC91111) += smc91111_eeprom
32ELF-$(CONFIG_SMC911X) += smc911x_eeprom
33ELF-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2
34ELF-i386 += 82559_eeprom
35ELF-mpc5xxx += interrupt
36ELF-mpc8xx += test_burst timer
37ELF-mpc8260 += mem_to_mem_idma2intr
38ELF-ppc += sched
39ELF-oxc += eepro100_eeprom
Mike Frysinger65f6f072009-07-23 16:37:03 -040040
Sanjeev Premi604f7ce2009-11-09 22:43:00 +053041#
42# Some versions of make do not handle trailing white spaces properly;
43# leading to build failures. The problem was found with GNU Make 3.80.
44# Using 'strip' as a workaround for the problem.
45#
46ELF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU)))
47
Che-liang Chiou0da43892011-02-21 21:07:00 +000048SREC := $(addsuffix .srec,$(ELF))
49BIN := $(addsuffix .bin,$(ELF))
wdenk931da932005-05-07 19:06:32 +000050
Mike Frysinger557555f2009-09-04 19:54:45 -040051COBJS := $(ELF:=.o)
wdenk717b5aa2002-04-27 11:09:31 +000052
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010053LIB = $(obj)libstubs.o
Mike Frysinger557555f2009-09-04 19:54:45 -040054
55LIBAOBJS-$(ARCH) :=
56LIBAOBJS-$(CPU) :=
57LIBAOBJS-ppc += $(ARCH)_longjmp.o $(ARCH)_setjmp.o
58LIBAOBJS-mpc8xx += test_burst_lib.o
59LIBAOBJS := $(LIBAOBJS-$(ARCH)) $(LIBAOBJS-$(CPU))
60
61LIBCOBJS = stubs.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020062
63LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
64
Mike Frysinger557555f2009-09-04 19:54:45 -040065SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
Marian Balakowiczf9328632006-09-01 19:49:50 +020066OBJS := $(addprefix $(obj),$(COBJS))
Wolfgang Denk96582982006-10-24 13:55:18 +020067ELF := $(addprefix $(obj),$(ELF))
Marian Balakowiczf9328632006-09-01 19:49:50 +020068BIN := $(addprefix $(obj),$(BIN))
69SREC := $(addprefix $(obj),$(SREC))
wdenk717b5aa2002-04-27 11:09:31 +000070
wdenkc29fdfc2003-08-29 20:57:53 +000071gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
72
wdenk717b5aa2002-04-27 11:09:31 +000073CPPFLAGS += -I..
74
Peter Tyser620bbba2010-06-15 21:48:25 +020075# For PowerPC there's no need to compile standalone applications as a
76# relocatable executable. The relocation data is not needed, and
77# also causes the entry point of the standalone application to be
78# inconsistent.
79ifeq ($(ARCH),powerpc)
80AFLAGS := $(filter-out $(RELFLAGS),$(AFLAGS))
81CFLAGS := $(filter-out $(RELFLAGS),$(CFLAGS))
82CPPFLAGS := $(filter-out $(RELFLAGS),$(CPPFLAGS))
83endif
84
Peter Tyserc91d4562010-09-12 17:38:49 -050085# We don't want gcc reordering functions if possible. This ensures that an
86# application's entry point will be the first function in the application's
87# source file.
Wolfgang Denkcca4e4a2011-11-01 20:54:02 +000088CFLAGS_NTR := $(call cc-option,-fno-toplevel-reorder)
89CFLAGS += $(CFLAGS_NTR)
Peter Tyserc91d4562010-09-12 17:38:49 -050090
Wolfgang Denk96582982006-10-24 13:55:18 +020091all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
wdenk717b5aa2002-04-27 11:09:31 +000092
93#########################################################################
Marian Balakowiczf9328632006-09-01 19:49:50 +020094$(LIB): $(obj).depend $(LIBOBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010095 $(call cmd_link_o_target, $(LIBOBJS))
wdenk717b5aa2002-04-27 11:09:31 +000096
Wolfgang Denk96582982006-10-24 13:55:18 +020097$(ELF):
Marian Balakowiczf9328632006-09-01 19:49:50 +020098$(obj)%: $(obj)%.o $(LIB)
Marek Vasute0e7f3b2012-03-06 00:44:22 +010099 $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
Mike Frysinger0858b832008-02-04 19:26:55 -0500100 -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
Marian Balakowiczf9328632006-09-01 19:49:50 +0200101 -L$(gcclibdir) -lgcc
Wolfgang Denk96582982006-10-24 13:55:18 +0200102
103$(SREC):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200104$(obj)%.srec: $(obj)%
105 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +0000106
Wolfgang Denk96582982006-10-24 13:55:18 +0200107$(BIN):
Marian Balakowiczf9328632006-09-01 19:49:50 +0200108$(obj)%.bin: $(obj)%
109 $(OBJCOPY) -O binary $< $@ 2>/dev/null
wdenkdc7c9a12003-03-26 06:55:25 +0000110
wdenk717b5aa2002-04-27 11:09:31 +0000111#########################################################################
112
Marian Balakowiczf9328632006-09-01 19:49:50 +0200113# defines $(obj).depend target
114include $(SRCTREE)/rules.mk
wdenk717b5aa2002-04-27 11:09:31 +0000115
Marian Balakowiczf9328632006-09-01 19:49:50 +0200116sinclude $(obj).depend
wdenk717b5aa2002-04-27 11:09:31 +0000117
118#########################################################################