Makefile 2.5 KB
Newer Older
W
wdenk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#
# (C) Copyright 2000
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# See file CREDITS for list of people who contributed to this
# project.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#

24
ifeq ($(ARCH),ppc)
W
wdenk 已提交
25
LOAD_ADDR = 0x40000
26 27 28 29 30 31 32 33 34 35 36 37 38
endif

ifeq ($(ARCH),i386)
LOAD_ADDR = 0x40000
endif

ifeq ($(ARCH),arm)
LOAD_ADDR = 0xc100000
endif

ifeq ($(ARCH),mips)
LOAD_ADDR = 0x80200000 -T mips.lds
endif
W
wdenk 已提交
39 40 41 42

include $(TOPDIR)/config.mk

SREC	= hello_world.srec
W
wdenk 已提交
43
BIN	= hello_world.bin
W
wdenk 已提交
44

W
wdenk 已提交
45 46 47 48 49
ifeq ($(ARCH),i386)
SREC   += 82559_eeprom.srec
BIN    += 82559_eeprom.bin
endif

W
wdenk 已提交
50 51 52 53 54
ifeq ($(ARCH),ppc)
SREC   += sched.srec
BIN    += sched.bin
endif

W
wdenk 已提交
55 56 57
# The following example is pretty 8xx specific...
ifeq ($(CPU),mpc8xx)
SREC   += timer.srec
W
wdenk 已提交
58
BIN    += timer.bin
W
wdenk 已提交
59 60
endif

W
wdenk 已提交
61 62 63 64 65 66
# The following example is 8260 specific...
ifeq ($(CPU),mpc8260)
SREC   += mem_to_mem_idma2intr.srec
BIN    += mem_to_mem_idma2intr.bin
endif

W
wdenk 已提交
67 68 69 70 71 72 73
# Utility for resetting i82559 EEPROM
ifeq ($(BOARD),oxc)
SREC   += eepro100_eeprom.srec
endif

OBJS	= $(SREC:.srec=.o)

74 75
LIB	= libstubs.a
LIBAOBJS=
W
wdenk 已提交
76 77 78
ifeq ($(ARCH),ppc)
LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
endif
79
LIBCOBJS= stubs.o
W
wdenk 已提交
80 81
LIBOBJS	= $(LIBAOBJS) $(LIBCOBJS)

W
wdenk 已提交
82 83
gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)

W
wdenk 已提交
84 85
CPPFLAGS += -I..

W
wdenk 已提交
86
all:	.depend $(LIB) $(SREC) $(BIN)
W
wdenk 已提交
87 88 89 90 91 92

#########################################################################
$(LIB): .depend $(LIBOBJS)
	$(AR) crv $@ $(LIBOBJS)

%.srec:	%.o $(LIB)
W
wdenk 已提交
93 94
	$(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e $(<:.o=) $< $(LIB) \
		-L$(gcclibdir) -lgcc
W
wdenk 已提交
95 96
	$(OBJCOPY) -O srec $(<:.o=) $@

W
wdenk 已提交
97
%.bin:	%.srec
98
	$(OBJCOPY) -O binary $< $@ 2>/dev/null
W
wdenk 已提交
99

W
wdenk 已提交
100 101 102 103 104 105 106 107
#########################################################################

.depend:	Makefile $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
		$(CC) -M $(CFLAGS) $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) > $@

sinclude .depend

#########################################################################