wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 6 | # |
| 7 | |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 8 | include $(TOPDIR)/config.mk |
| 9 | |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 10 | ELF-$(ARCH) := |
| 11 | ELF-$(BOARD) := |
| 12 | ELF-$(CPU) := |
| 13 | ELF-y := hello_world |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 14 | |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 15 | ELF-$(CONFIG_SMC91111) += smc91111_eeprom |
| 16 | ELF-$(CONFIG_SMC911X) += smc911x_eeprom |
| 17 | ELF-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2 |
| 18 | ELF-i386 += 82559_eeprom |
| 19 | ELF-mpc5xxx += interrupt |
| 20 | ELF-mpc8xx += test_burst timer |
| 21 | ELF-mpc8260 += mem_to_mem_idma2intr |
| 22 | ELF-ppc += sched |
| 23 | ELF-oxc += eepro100_eeprom |
Mike Frysinger | 65f6f07 | 2009-07-23 16:37:03 -0400 | [diff] [blame] | 24 | |
Sanjeev Premi | 604f7ce | 2009-11-09 22:43:00 +0530 | [diff] [blame] | 25 | # |
| 26 | # Some versions of make do not handle trailing white spaces properly; |
| 27 | # leading to build failures. The problem was found with GNU Make 3.80. |
| 28 | # Using 'strip' as a workaround for the problem. |
| 29 | # |
| 30 | ELF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU))) |
| 31 | |
Che-liang Chiou | 0da4389 | 2011-02-21 21:07:00 +0000 | [diff] [blame] | 32 | SREC := $(addsuffix .srec,$(ELF)) |
| 33 | BIN := $(addsuffix .bin,$(ELF)) |
wdenk | 931da93 | 2005-05-07 19:06:32 +0000 | [diff] [blame] | 34 | |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 35 | COBJS := $(ELF:=.o) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 36 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 37 | LIB = $(obj)libstubs.o |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 38 | |
| 39 | LIBAOBJS-$(ARCH) := |
| 40 | LIBAOBJS-$(CPU) := |
| 41 | LIBAOBJS-ppc += $(ARCH)_longjmp.o $(ARCH)_setjmp.o |
| 42 | LIBAOBJS-mpc8xx += test_burst_lib.o |
| 43 | LIBAOBJS := $(LIBAOBJS-$(ARCH)) $(LIBAOBJS-$(CPU)) |
| 44 | |
| 45 | LIBCOBJS = stubs.o |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 46 | |
| 47 | LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS)) |
| 48 | |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 49 | SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 50 | OBJS := $(addprefix $(obj),$(COBJS)) |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 51 | ELF := $(addprefix $(obj),$(ELF)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 52 | BIN := $(addprefix $(obj),$(BIN)) |
| 53 | SREC := $(addprefix $(obj),$(SREC)) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 54 | |
Tom Rini | 8386ca8 | 2013-09-10 09:51:44 -0400 | [diff] [blame] | 55 | gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`) |
wdenk | c29fdfc | 2003-08-29 20:57:53 +0000 | [diff] [blame] | 56 | |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 57 | CPPFLAGS += -I.. |
| 58 | |
Peter Tyser | 620bbba | 2010-06-15 21:48:25 +0200 | [diff] [blame] | 59 | # For PowerPC there's no need to compile standalone applications as a |
| 60 | # relocatable executable. The relocation data is not needed, and |
| 61 | # also causes the entry point of the standalone application to be |
| 62 | # inconsistent. |
| 63 | ifeq ($(ARCH),powerpc) |
| 64 | AFLAGS := $(filter-out $(RELFLAGS),$(AFLAGS)) |
| 65 | CFLAGS := $(filter-out $(RELFLAGS),$(CFLAGS)) |
| 66 | CPPFLAGS := $(filter-out $(RELFLAGS),$(CPPFLAGS)) |
| 67 | endif |
| 68 | |
Peter Tyser | c91d456 | 2010-09-12 17:38:49 -0500 | [diff] [blame] | 69 | # We don't want gcc reordering functions if possible. This ensures that an |
| 70 | # application's entry point will be the first function in the application's |
| 71 | # source file. |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 72 | CFLAGS_NTR := $(call cc-option,-fno-toplevel-reorder) |
| 73 | CFLAGS += $(CFLAGS_NTR) |
Peter Tyser | c91d456 | 2010-09-12 17:38:49 -0500 | [diff] [blame] | 74 | |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 75 | all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 76 | |
| 77 | ######################################################################### |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 78 | $(LIB): $(obj).depend $(LIBOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 79 | $(call cmd_link_o_target, $(LIBOBJS)) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 80 | |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 81 | $(ELF): |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 82 | $(obj)%: $(obj)%.o $(LIB) |
Marek Vasut | e0e7f3b | 2012-03-06 00:44:22 +0100 | [diff] [blame] | 83 | $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \ |
Mike Frysinger | 0858b83 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 84 | -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \ |
Tom Rini | 8386ca8 | 2013-09-10 09:51:44 -0400 | [diff] [blame] | 85 | -L$(gcclibdir) -lgcc |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 86 | |
| 87 | $(SREC): |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 88 | $(obj)%.srec: $(obj)% |
| 89 | $(OBJCOPY) -O srec $< $@ 2>/dev/null |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 90 | |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 91 | $(BIN): |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 92 | $(obj)%.bin: $(obj)% |
| 93 | $(OBJCOPY) -O binary $< $@ 2>/dev/null |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 94 | |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 95 | ######################################################################### |
| 96 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 97 | # defines $(obj).depend target |
| 98 | include $(SRCTREE)/rules.mk |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 99 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 100 | sinclude $(obj).depend |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 101 | |
| 102 | ######################################################################### |