diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-11-07 00:25:57 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-11-07 00:25:57 +0000 |
commit | 5b30331167ffba6aef06fb3ad9685b792af816ce (patch) | |
tree | bac6dd1994bdbeb501ed9d049c4504e01ec63c4f /libgloss/arm/Makefile.in | |
parent | c27382bdbeb9ac583b77c148239ccd011b663c50 (diff) | |
download | cygnal-5b30331167ffba6aef06fb3ad9685b792af816ce.tar.gz cygnal-5b30331167ffba6aef06fb3ad9685b792af816ce.tar.bz2 cygnal-5b30331167ffba6aef06fb3ad9685b792af816ce.zip |
2002-11-08 Jeff Johnston <jjohnstn@redhat.com>
* arm/Makefile.in: Add support for new pid specs.
* arm/coff-iq80310.specs: Change to allow future support.
* arm/elf-iq80310.specs: Ditto.
* arm/elf-redboot.specs: Ditto.
* arm/coff-redboot.ld: Add EH frame support.
* arm/redboot-crt0.S: Add optional code to clear bss without
memset.
* arm/coff-pid.specs: New file.
* arm/elf-pid.specs: New file.
Diffstat (limited to 'libgloss/arm/Makefile.in')
-rw-r--r-- | libgloss/arm/Makefile.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libgloss/arm/Makefile.in b/libgloss/arm/Makefile.in index 9e3024f97..97e3ad451 100644 --- a/libgloss/arm/Makefile.in +++ b/libgloss/arm/Makefile.in @@ -47,15 +47,19 @@ OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \ then echo ${objroot}/../binutils/objcopy ; \ else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi` -REDBOOT_OBJS = redboot-crt0.o redboot-syscalls.o +REDBOOT_OBJS = redboot-crt0.o redboot-syscalls.o REDBOOT_SCRIPTS = redboot.ld redboot.specs REDBOOT_INSTALL = install-redboot CFLAGS = -g -# Here is specific eval board stuff +# Here is all of the eval board stuff +PID_SCRIPTS = pid.specs +PID_INSTALL = install-pid + IQ80310_SCRIPTS = iq80310.specs IQ80310_INSTALL = install-iq80310 + # Host specific makefile fragment comes in here. @host_makefile_frag@ @@ -82,13 +86,16 @@ distclean maintainer-clean realclean: clean rm -f Makefile config.status *~ .PHONY: install info install-info clean-info -install: ${REDBOOT_INSTALL} ${IQ80310_INSTALL} +install: ${REDBOOT_INSTALL} ${IQ80310_INSTALL} ${PID_INSTALL} install-redboot: set -e; for x in ${REDBOOT_OBJS}; do ${INSTALL_DATA} $$x ${tooldir}/lib${MULTISUBDIR}/$$x; done set -e; for x in ${REDBOOT_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x ${tooldir}/lib${MULTISUBDIR}/$$x; done +install-pid: + set -e; for x in ${PID_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x ${tooldir}/lib${MULTISUBDIR}/$$x; done + install-iq80310: set -e; for x in ${IQ80310_SCRIPTS}; do ${INSTALL_DATA} ${srcdir}/${objtype}$$x ${tooldir}/lib${MULTISUBDIR}/$$x; done |