From: Erik M. <er...@us...> - 2001-10-07 15:51:03
|
Update of /cvsroot/blob/blob/src/blob In directory usw-pr-cvs1:/tmp/cvs-serv23534/blob Modified Files: Makefile.am Added Files: ledasm.S memsetup-sa1100.S memsetup-sa1110.S start-ld-script start.S testmem.S Log Message: Move first stage loader to src/blob/ ***** Error reading new file: [Errno 2] No such file or directory: 'ledasm.S' ***** Error reading new file: [Errno 2] No such file or directory: 'memsetup-sa1100.S' ***** Error reading new file: [Errno 2] No such file or directory: 'memsetup-sa1110.S' ***** Error reading new file: [Errno 2] No such file or directory: 'start-ld-script' ***** Error reading new file: [Errno 2] No such file or directory: 'start.S' ***** Error reading new file: [Errno 2] No such file or directory: 'testmem.S' Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/blob/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Makefile.am 2001/10/07 15:07:13 1.1 +++ Makefile.am 2001/10/07 15:51:01 1.2 @@ -0,0 +1,74 @@ +# -*- makefile -*- +# +# Makefile.am +# +# Copyright (C) 2001 Erik Mouw (J.A...@it...) +# +# $Id$ +# +# 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 +# + + +bin_PROGRAMS = \ + blob-start-elf32 \ + blob-start + + +INCLUDES += \ + -I${top_builddir}/include \ + -I${top_srcdir}/include + + +# ---- Blob first stage loader --------------------------------------- + +# WARNING: start.S *must* be the first file, otherwise the target will +# be linked in the wrong order! +blob_start_elf32_SOURCES = \ + start.S \ + ledasm.S \ + testmem.S + +EXTRA_blob_start_elf32_SOURCES = \ + memsetup-sa1100.S \ + memsetup-sa1110.S + +blob_start_elf32_DEPENDENCIES = \ + @MEMSETUP@ + +blob_start_elf32_LDFLAGS += \ + -Wl,-T,${srcdir}/start-ld-script + +blob_start_elf32_LDADD += \ + @MEMSETUP@ \ + -lgcc + + +blob_start_SOURCES = + + +blob-start: blob-start-elf32 + $(OBJCOPY) $(OCFLAGS) $< $@ + + + + + +# ---- Automake administrativia -------------------------------------- + +CLEANFILES = ${srcdir}/*~ + + +DISTCLEANFILES = .deps/*.P |