blob: 52f43680fc610cdef26fc90ddee82492ff847260 [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
Stefan Roese88fbf932010-04-15 16:07:28 +02007ifeq ($(ARCH),powerpc)
Rafal Jaworowskia19be782008-01-09 19:39:36 +01008LOAD_ADDR = 0x40000
9endif
Rafal Jaworowski9d9689f2009-01-23 13:27:16 +010010ifeq ($(ARCH),arm)
11LOAD_ADDR = 0x1000000
12endif
Rafal Jaworowskia19be782008-01-09 19:39:36 +010013
Peter Tyser2dcb4e12009-06-22 18:01:39 -050014# Resulting ELF and binary exectuables will be named demo and demo.bin
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090015extra-y = demo
Rafal Jaworowskia19be782008-01-09 19:39:36 +010016
Peter Tyseracce4eb2009-07-20 19:02:21 -050017# Source files located in the examples/api directory
Masahiro Yamada6c9a0222013-11-18 11:08:35 +090018SOBJ_FILES-y += crt0.o
19COBJ_FILES-y += demo.o
20COBJ_FILES-y += glue.o
21COBJ_FILES-y += libgenwrap.o
Rafal Jaworowskia19be782008-01-09 19:39:36 +010022
Peter Tyseracce4eb2009-07-20 19:02:21 -050023# Source files which exist outside the examples/api directory
Masahiro Yamada6c9a0222013-11-18 11:08:35 +090024EXT_COBJ_FILES-y += lib/crc32.o
25EXT_COBJ_FILES-y += lib/ctype.o
26EXT_COBJ_FILES-y += lib/div64.o
27EXT_COBJ_FILES-y += lib/string.o
28EXT_COBJ_FILES-y += lib/time.o
29EXT_COBJ_FILES-y += lib/vsprintf.o
30EXT_SOBJ_FILES-$(CONFIG_PPC) += arch/powerpc/lib/ppcstring.o
Peter Tyser2dcb4e12009-06-22 18:01:39 -050031
Peter Tyserbdb925e2009-06-22 18:01:41 -050032# Create a list of source files so their dependencies can be auto-generated
33SRCS += $(addprefix $(SRCTREE)/,$(EXT_COBJ_FILES-y:.o=.c))
34SRCS += $(addprefix $(SRCTREE)/,$(EXT_SOBJ_FILES-y:.o=.S))
Peter Tyseracce4eb2009-07-20 19:02:21 -050035SRCS += $(addprefix $(SRCTREE)/examples/api/,$(COBJ_FILES-y:.o=.c))
36SRCS += $(addprefix $(SRCTREE)/examples/api/,$(SOBJ_FILES-y:.o=.S))
Rafal Jaworowskia19be782008-01-09 19:39:36 +010037
Peter Tyserbdb925e2009-06-22 18:01:41 -050038# Create a list of object files to be compiled
39OBJS += $(addprefix $(obj),$(SOBJ_FILES-y))
40OBJS += $(addprefix $(obj),$(COBJ_FILES-y))
41OBJS += $(addprefix $(obj),$(notdir $(EXT_COBJ_FILES-y)))
42OBJS += $(addprefix $(obj),$(notdir $(EXT_SOBJ_FILES-y)))
Rafal Jaworowskia19be782008-01-09 19:39:36 +010043
Rafal Jaworowskia19be782008-01-09 19:39:36 +010044#########################################################################
Rafal Jaworowskia19be782008-01-09 19:39:36 +010045
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090046$(obj)demo: $(OBJS)
Rob Herring55fbb1d2013-10-04 10:22:40 -050047 $(LD) --gc-sections -Ttext $(LOAD_ADDR) -o $@ $^ $(PLATFORM_LIBS)
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090048
49$(obj)demo.bin: $(obj)demo
50 $(OBJCOPY) -O binary $< $@ 2>/dev/null
Rafal Jaworowskia19be782008-01-09 19:39:36 +010051
Peter Tyserbdb925e2009-06-22 18:01:41 -050052# Rule to build generic library C files
Masahiro Yamada2feb8d32014-02-04 17:24:14 +090053$(addprefix $(obj),$(notdir $(EXT_COBJ_FILES-y))): $(obj)%.o: $(SRCTREE)/lib/%.c
Peter Tyserbdb925e2009-06-22 18:01:41 -050054 $(CC) -g $(CFLAGS) -c -o $@ $<
Rafal Jaworowskia19be782008-01-09 19:39:36 +010055
Peter Tyserbdb925e2009-06-22 18:01:41 -050056# Rule to build architecture-specific library assembly files
Masahiro Yamada2feb8d32014-02-04 17:24:14 +090057$(addprefix $(obj),$(notdir $(EXT_SOBJ_FILES-y))): $(obj)%.o: $(SRCTREE)/arch/$(ARCH)/lib/%.S
Peter Tyserbdb925e2009-06-22 18:01:41 -050058 $(CC) -g $(CFLAGS) -c -o $@ $<