blob: 5b5f7a681c5e622b656f8a7269a69a604fbf10a9 [file] [log] [blame]
Rafal Jaworowski500856e2008-01-09 19:39:36 +01001#
2# (C) Copyright 2007 Semihalf
3#
4# See file CREDITS for list of people who contributed to this
5# project.
6#
7# This program is free software; you can redistribute it and/or
8# modify it under the terms of the GNU General Public License as
9# published by the Free Software Foundatio; either version 2 of
10# the License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20# MA 02111-1307 USA
21#
22
Stefan Roesea47a12b2010-04-15 16:07:28 +020023ifeq ($(ARCH),powerpc)
Rafal Jaworowski500856e2008-01-09 19:39:36 +010024LOAD_ADDR = 0x40000
25endif
Rafal Jaworowski7fb6c4f2009-01-23 13:27:16 +010026ifeq ($(ARCH),arm)
27LOAD_ADDR = 0x1000000
28endif
Rafal Jaworowski500856e2008-01-09 19:39:36 +010029
30include $(TOPDIR)/config.mk
31
Peter Tyser117d0ab2009-06-22 18:01:39 -050032# Resulting ELF and binary exectuables will be named demo and demo.bin
33OUTPUT-$(CONFIG_API) = $(obj)demo
Peter Tyser876b3ce2009-06-22 18:01:41 -050034OUTPUT = $(OUTPUT-y)
Rafal Jaworowski500856e2008-01-09 19:39:36 +010035
Peter Tyserd4abc752009-07-20 19:02:21 -050036# Source files located in the examples/api directory
Peter Tyser876b3ce2009-06-22 18:01:41 -050037SOBJ_FILES-$(CONFIG_API) += crt0.o
38COBJ_FILES-$(CONFIG_API) += demo.o
39COBJ_FILES-$(CONFIG_API) += glue.o
40COBJ_FILES-$(CONFIG_API) += libgenwrap.o
Rafal Jaworowski500856e2008-01-09 19:39:36 +010041
Peter Tyserd4abc752009-07-20 19:02:21 -050042# Source files which exist outside the examples/api directory
Peter Tyser78acc472010-04-12 22:28:05 -050043EXT_COBJ_FILES-$(CONFIG_API) += lib/crc32.o
44EXT_COBJ_FILES-$(CONFIG_API) += lib/ctype.o
45EXT_COBJ_FILES-$(CONFIG_API) += lib/div64.o
46EXT_COBJ_FILES-$(CONFIG_API) += lib/string.o
47EXT_COBJ_FILES-$(CONFIG_API) += lib/time.o
48EXT_COBJ_FILES-$(CONFIG_API) += lib/vsprintf.o
Stefan Roesea47a12b2010-04-15 16:07:28 +020049ifeq ($(ARCH),powerpc)
50EXT_SOBJ_FILES-$(CONFIG_API) += arch/powerpc/lib/ppcstring.o
Rafal Jaworowski500856e2008-01-09 19:39:36 +010051endif
Peter Tyser117d0ab2009-06-22 18:01:39 -050052
Peter Tyser876b3ce2009-06-22 18:01:41 -050053# Create a list of source files so their dependencies can be auto-generated
54SRCS += $(addprefix $(SRCTREE)/,$(EXT_COBJ_FILES-y:.o=.c))
55SRCS += $(addprefix $(SRCTREE)/,$(EXT_SOBJ_FILES-y:.o=.S))
Peter Tyserd4abc752009-07-20 19:02:21 -050056SRCS += $(addprefix $(SRCTREE)/examples/api/,$(COBJ_FILES-y:.o=.c))
57SRCS += $(addprefix $(SRCTREE)/examples/api/,$(SOBJ_FILES-y:.o=.S))
Rafal Jaworowski500856e2008-01-09 19:39:36 +010058
Peter Tyser876b3ce2009-06-22 18:01:41 -050059# Create a list of object files to be compiled
60OBJS += $(addprefix $(obj),$(SOBJ_FILES-y))
61OBJS += $(addprefix $(obj),$(COBJ_FILES-y))
62OBJS += $(addprefix $(obj),$(notdir $(EXT_COBJ_FILES-y)))
63OBJS += $(addprefix $(obj),$(notdir $(EXT_SOBJ_FILES-y)))
Rafal Jaworowski500856e2008-01-09 19:39:36 +010064
65gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
66
67CPPFLAGS += -I..
68
Peter Tyser876b3ce2009-06-22 18:01:41 -050069all: $(obj).depend $(OUTPUT)
Rafal Jaworowski500856e2008-01-09 19:39:36 +010070
71#########################################################################
Rafal Jaworowski500856e2008-01-09 19:39:36 +010072
Peter Tyser876b3ce2009-06-22 18:01:41 -050073$(OUTPUT): $(OBJS)
Peter Tyser522f6f02009-06-22 18:01:40 -050074 $(LD) -Ttext $(LOAD_ADDR) -o $@ $^ -L$(gcclibdir) -lgcc
Peter Tyser117d0ab2009-06-22 18:01:39 -050075 $(OBJCOPY) -O binary $@ $(OUTPUT).bin 2>/dev/null
Rafal Jaworowski500856e2008-01-09 19:39:36 +010076
Peter Tyser876b3ce2009-06-22 18:01:41 -050077# Rule to build generic library C files
Peter Tyser78acc472010-04-12 22:28:05 -050078$(obj)%.o: $(SRCTREE)/lib/%.c
Peter Tyser876b3ce2009-06-22 18:01:41 -050079 $(CC) -g $(CFLAGS) -c -o $@ $<
Rafal Jaworowski500856e2008-01-09 19:39:36 +010080
Peter Tyser876b3ce2009-06-22 18:01:41 -050081# Rule to build architecture-specific library assembly files
Peter Tyserea0364f2010-04-12 22:28:04 -050082$(obj)%.o: $(SRCTREE)/arch/$(ARCH)/lib/%.S
Peter Tyser876b3ce2009-06-22 18:01:41 -050083 $(CC) -g $(CFLAGS) -c -o $@ $<
Rafal Jaworowski500856e2008-01-09 19:39:36 +010084
85#########################################################################
86
87# defines $(obj).depend target
88include $(SRCTREE)/rules.mk
89
90sinclude $(obj).depend
91
92#########################################################################