blob: ee3c487c13253904593e09376730a7b20984c5ac [file] [log] [blame]
Rafal Jaworowskia19be782008-01-09 19:39:36 +01001#
2# (C) Copyright 2007 Semihalf
3#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004# SPDX-License-Identifier: GPL-2.0+
Rafal Jaworowskia19be782008-01-09 19:39:36 +01005#
6
Masahiro Yamadaa6d77562014-02-04 17:24:23 +09007ifdef FTRACE
8CFLAGS += -finstrument-functions -DFTRACE
9endif
10
Stefan Roese88fbf932010-04-15 16:07:28 +020011ifeq ($(ARCH),powerpc)
Rafal Jaworowskia19be782008-01-09 19:39:36 +010012LOAD_ADDR = 0x40000
13endif
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +010014ifeq ($(ARCH),arm)
15LOAD_ADDR = 0x1000000
16endif
Rafal Jaworowskia19be782008-01-09 19:39:36 +010017
Peter Tyser2dcb4e12009-06-22 18:01:39 -050018# Resulting ELF and binary exectuables will be named demo and demo.bin
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090019extra-y = demo
Rafal Jaworowskia19be782008-01-09 19:39:36 +010020
Peter Tyseracce4eb2009-07-20 19:02:21 -050021# Source files located in the examples/api directory
Masahiro Yamada6c9a0222013-11-18 11:08:35 +090022SOBJ_FILES-y += crt0.o
23COBJ_FILES-y += demo.o
24COBJ_FILES-y += glue.o
25COBJ_FILES-y += libgenwrap.o
Rafal Jaworowskia19be782008-01-09 19:39:36 +010026
Peter Tyseracce4eb2009-07-20 19:02:21 -050027# Source files which exist outside the examples/api directory
Masahiro Yamada6c9a0222013-11-18 11:08:35 +090028EXT_COBJ_FILES-y += lib/crc32.o
29EXT_COBJ_FILES-y += lib/ctype.o
30EXT_COBJ_FILES-y += lib/div64.o
31EXT_COBJ_FILES-y += lib/string.o
32EXT_COBJ_FILES-y += lib/time.o
33EXT_COBJ_FILES-y += lib/vsprintf.o
34EXT_SOBJ_FILES-$(CONFIG_PPC) += arch/powerpc/lib/ppcstring.o
Peter Tyser2dcb4e12009-06-22 18:01:39 -050035
Peter Tyserbdb925e2009-06-22 18:01:41 -050036# Create a list of source files so their dependencies can be auto-generated
37SRCS += $(addprefix $(SRCTREE)/,$(EXT_COBJ_FILES-y:.o=.c))
38SRCS += $(addprefix $(SRCTREE)/,$(EXT_SOBJ_FILES-y:.o=.S))
Peter Tyseracce4eb2009-07-20 19:02:21 -050039SRCS += $(addprefix $(SRCTREE)/examples/api/,$(COBJ_FILES-y:.o=.c))
40SRCS += $(addprefix $(SRCTREE)/examples/api/,$(SOBJ_FILES-y:.o=.S))
Rafal Jaworowskia19be782008-01-09 19:39:36 +010041
Peter Tyserbdb925e2009-06-22 18:01:41 -050042# Create a list of object files to be compiled
43OBJS += $(addprefix $(obj),$(SOBJ_FILES-y))
44OBJS += $(addprefix $(obj),$(COBJ_FILES-y))
45OBJS += $(addprefix $(obj),$(notdir $(EXT_COBJ_FILES-y)))
46OBJS += $(addprefix $(obj),$(notdir $(EXT_SOBJ_FILES-y)))
Rafal Jaworowskia19be782008-01-09 19:39:36 +010047
Rafal Jaworowskia19be782008-01-09 19:39:36 +010048#########################################################################
Rafal Jaworowskia19be782008-01-09 19:39:36 +010049
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090050$(obj)demo: $(OBJS)
Rob Herring55fbb1d2013-10-04 10:22:40 -050051 $(LD) --gc-sections -Ttext $(LOAD_ADDR) -o $@ $^ $(PLATFORM_LIBS)
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090052
53$(obj)demo.bin: $(obj)demo
54 $(OBJCOPY) -O binary $< $@ 2>/dev/null
Rafal Jaworowskia19be782008-01-09 19:39:36 +010055
Peter Tyserbdb925e2009-06-22 18:01:41 -050056# Rule to build generic library C files
Masahiro Yamada2feb8d32014-02-04 17:24:14 +090057$(addprefix $(obj),$(notdir $(EXT_COBJ_FILES-y))): $(obj)%.o: $(SRCTREE)/lib/%.c
Peter Tyserbdb925e2009-06-22 18:01:41 -050058 $(CC) -g $(CFLAGS) -c -o $@ $<
Rafal Jaworowskia19be782008-01-09 19:39:36 +010059
Peter Tyserbdb925e2009-06-22 18:01:41 -050060# Rule to build architecture-specific library assembly files
Masahiro Yamada2feb8d32014-02-04 17:24:14 +090061$(addprefix $(obj),$(notdir $(EXT_SOBJ_FILES-y))): $(obj)%.o: $(SRCTREE)/arch/$(ARCH)/lib/%.S
Peter Tyserbdb925e2009-06-22 18:01:41 -050062 $(CC) -g $(CFLAGS) -c -o $@ $<