mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-23 09:09:35 +08:00
libgloss/ * arm/Makefile.in (armv7m, lm3s10x, lm3s301, lm3s31x): Swap RAM and ROM. (rdimon, rdpmon): Skip 8k.
202 lines
6.0 KiB
Makefile
202 lines
6.0 KiB
Makefile
#
|
|
#
|
|
DESTDIR =
|
|
VPATH = @srcdir@ @srcdir@/..
|
|
srcdir = @srcdir@
|
|
objdir = .
|
|
srcroot = $(srcdir)/../..
|
|
objroot = $(objdir)/../..
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
|
|
host_alias = @host_alias@
|
|
target_alias = @target_alias@
|
|
|
|
bindir = @bindir@
|
|
libdir = @libdir@
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
objtype = @objtype@
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
# Multilib support variables.
|
|
# TOP is used instead of MULTI{BUILD,SRC}TOP.
|
|
MULTISRCTOP =
|
|
MULTIBUILDTOP =
|
|
MULTIDIRS =
|
|
MULTISUBDIR =
|
|
MULTIDO = true
|
|
MULTICLEAN = true
|
|
|
|
SHELL = /bin/sh
|
|
|
|
CC = @CC@
|
|
|
|
AS = @AS@
|
|
AR = @AR@
|
|
LD = @LD@
|
|
RANLIB = @RANLIB@
|
|
|
|
OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
|
|
then echo ${objroot}/../binutils/objdump ; \
|
|
else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
|
|
OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
|
|
then echo ${objroot}/../binutils/objcopy ; \
|
|
else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
|
|
|
|
@BUILD_CRT0_TRUE@CRT0 = crt0.o
|
|
@BUILD_CRT0_TRUE@CRT0_INSTALL = install-crt0
|
|
@BUILD_CRT0_FALSE@CRT0 =
|
|
@BUILD_CRT0_FALSE@CRT0_INSTALL =
|
|
|
|
REDBOOT_CRT0 = redboot-crt0.o
|
|
REDBOOT_OBJS = redboot-syscalls.o
|
|
REDBOOT_SCRIPTS = redboot.ld redboot.specs
|
|
REDBOOT_INSTALL = install-redboot
|
|
|
|
RDPMON_CRT0 = rdpmon-crt0.o rdpmon-ram.ld
|
|
RDPMON_BSP = librdpmon.a
|
|
RDPMON_OBJS = syscalls.o libcfunc.o trap.o _exit.o
|
|
RDPMON_INSTALL = install-rdpmon
|
|
|
|
RDIMON_CRT0 = rdimon-crt0.o rdimon-ram.ld
|
|
RDIMON_BSP = librdimon.a
|
|
RDIMON_OBJS = rdimon-syscalls.o rdimon-libcfunc.o rdimon-trap.o \
|
|
rdimon-_exit.o
|
|
RDIMON_INSTALL = install-rdimon
|
|
|
|
CFLAGS = -g
|
|
|
|
# Here is all of the eval board stuff
|
|
PID_SCRIPTS = pid.specs
|
|
PID_INSTALL = install-pid
|
|
|
|
IQ80310_SCRIPTS = iq80310.specs
|
|
IQ80310_INSTALL = install-iq80310
|
|
|
|
ARMV7M_OBJS = armv7m-crt0.o rdimon-ram.ld \
|
|
armv7m-rom.ld lm3s10x-rom.ld lm3s301-rom.ld lm3s31x-rom.ld \
|
|
armv7m-ram.ld lm3s10x-ram.ld lm3s301-ram.ld lm3s31x-ram.ld
|
|
ARMV7M_SPECS = armv7m.specs
|
|
ARMV7M_INSTALL = install-armv7m
|
|
|
|
# Host specific makefile fragment comes in here.
|
|
@host_makefile_frag@
|
|
|
|
#
|
|
# build a test program for each target board. Just trying to get
|
|
# it to link is a good test, so we ignore all the errors for now.
|
|
#
|
|
all: ${CRT0} ${REDBOOT_CRT0} ${REDBOOT_OBJS} ${RDPMON_CRT0} ${RDPMON_BSP} ${RDIMON_CRT0} ${RDIMON_BSP} ${ARMV7M_OBJS}
|
|
|
|
#
|
|
# here's where we build the test programs for each target
|
|
#
|
|
.PHONY: test
|
|
test:
|
|
|
|
#
|
|
crt0.o: crt0.S
|
|
armv7m-crt0.o: crt0.S
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -D_ARM_V7M -o $@ -c $<
|
|
|
|
redboot-crt0.o: redboot-crt0.S
|
|
redboot-syscalls.o: redboot-syscalls.c $(srcdir)/../syscall.h
|
|
|
|
rdpmon-crt0.o: crt0.S
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDP_MONITOR -o $@ -c $<
|
|
|
|
rdimon-crt0.o: crt0.S
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
|
|
|
|
rdimon-trap.o: trap.S
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
|
|
|
|
rdimon-_exit.o: _exit.c
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
|
|
|
|
rdimon-syscalls.o: syscalls.c
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
|
|
|
|
rdimon-libcfunc.o: libcfunc.c
|
|
$(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) -DARM_RDI_MONITOR -o $@ -c $<
|
|
|
|
$(RDPMON_BSP): $(RDPMON_OBJS)
|
|
${AR} ${ARFLAGS} $@ $^
|
|
${RANLIB} $@
|
|
|
|
$(RDIMON_BSP): $(RDIMON_OBJS)
|
|
${AR} ${ARFLAGS} $@ $^
|
|
${RANLIB} $@
|
|
|
|
# Default and armv7M board files.
|
|
# For RAM configurations which start at zero, skip 8k. This prevents
|
|
# the simulator from getting confused about whether we have our own
|
|
# SWI vectors.
|
|
# ram rom stack crt0 bsp
|
|
# position size position size
|
|
rdimon= 0x8000 4095M 0 0 no rdimon-crt0.o -lrdimon
|
|
rdpmon= 0x8000 4095M 0 0 no rdpmon-crt0.o -lrdpmon
|
|
armv7m= 0x20000000 32M 0 32M no armv7m-crt0.o -lrdimon
|
|
lm3s10x= 0x20000000 2k 0 8k yes armv7m-crt0.o -lrdimon
|
|
lm3s301= 0x20000000 2k 0 16k yes armv7m-crt0.o -lrdimon
|
|
lm3s31x= 0x20000000 4k 0 16k yes armv7m-crt0.o -lrdimon
|
|
|
|
%-ram.ld : arm.sc Makefile
|
|
RAM=$(word 1,$($*)) RAM_SIZE=$(word 2,$($*)) \
|
|
CRT0=$(word 6,$($*)) BSP=$(word 7,$($*)) \
|
|
${SHELL} $< $(word 5,$($*)) >$@
|
|
%-rom.ld : arm.sc Makefile
|
|
RAM=$(word 1,$($*)) RAM_SIZE=$(word 2,$($*)) \
|
|
ROM=$(word 3,$($*)) ROM_SIZE=$(word 4,$($*)) \
|
|
CRT0=$(word 6,$($*)) BSP=$(word 7,$($*)) \
|
|
${SHELL} $< $(word 5,$($*)) >$@
|
|
|
|
clean mostlyclean:
|
|
rm -f a.out core *.i *.o *-test *.srec *.dis *.x $(SIM_BSP) $(IQ80310_BSP)
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
rm -f Makefile config.status *~
|
|
|
|
.PHONY: install info install-info clean-info
|
|
install: ${CRT0_INSTALL} ${REDBOOT_INSTALL} ${RDPMON_INSTALL} ${RDIMON_INSTALL} ${IQ80310_INSTALL} ${PID_INSTALL} ${ARMV7M_INSTALL}
|
|
|
|
install-crt0:
|
|
${INSTALL_DATA} ${CRT0} $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x
|
|
|
|
install-redboot:
|
|
set -e; for x in ${REDBOOT_CRT0} ${REDBOOT_OBJS}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
set -e; for x in ${REDBOOT_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
install-rdpmon:
|
|
set -e; for x in ${RDPMON_CRT0} ${RDPMON_BSP}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
install-rdimon:
|
|
set -e; for x in ${RDIMON_CRT0} ${RDIMON_BSP}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
|
|
install-pid:
|
|
set -e; for x in ${PID_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
install-iq80310:
|
|
set -e; for x in ${IQ80310_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
install-armv7m:
|
|
set -e; for x in ${ARMV7M_OBJS}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
set -e; for x in ${ARMV7M_SPECS}; do ${INSTALL_DATA} ${srcdir}/$$x $(DESTDIR)/${tooldir}/lib${MULTISUBDIR}/$$x; done
|
|
|
|
doc:
|
|
info:
|
|
install-info:
|
|
clean-info:
|
|
|
|
Makefile: Makefile.in config.status @host_makefile_frag_path@
|
|
$(SHELL) config.status
|
|
|
|
config.status: configure
|
|
$(SHELL) config.status --recheck
|