From: Erik M. <er...@us...> - 2001-10-07 19:04:27
|
Update of /cvsroot/blob/blob/src In directory usw-pr-cvs1:/tmp/cvs-serv26965 Modified Files: Makefile.am Removed Files: debug.c error.c flash.c flashasm.S help.c icache.c init.c led.c linux.c main.c memory.c param_block.c reboot.c rest-ld-script serial.c terminal.c testmem2.S time.c trampoline.S util.c uucodec.c Log Message: Move all files to either blob/ or lib/ Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- Makefile.am 2001/10/07 15:51:01 1.13 +++ Makefile.am 2001/10/07 19:04:24 1.14 @@ -11,129 +11,9 @@ ########################################################################### SUBDIRS = \ - blob - - -bin_PROGRAMS = \ - blob-start-elf32 \ - blob-start \ - blob-rest-elf32 \ - blob-rest \ - blob - - -# First specify how to build the 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,${top_srcdir}/src/start-ld-script - -blob_start_elf32_LDADD += \ - @MEMSETUP@ \ - -lgcc - - -blob_start_SOURCES = - - -blob-start: blob-start-elf32 - $(OBJCOPY) $(OCFLAGS) $< $@ - - -# Now specify how to build the second stage loader - -# WARNING: trampoline.S *must* be the first file, otherwise the target -# will be linked in the wrong order! -blob_rest_elf32_SOURCES = \ - trampoline.S \ - flashasm.S \ - testmem2.S \ - command.c \ - command_hist.c \ - error.c \ - flash.c \ - help.c \ - icache.c \ - init.c \ - led.c \ - linux.c \ - main.c \ - memory.c \ - param_block.c \ - reboot.c \ - serial.c \ - terminal.c \ - time.c \ - util.c \ - uucodec.c - -# conditionally compiled sources -EXTRA_blob_rest_elf32_SOURCES = \ - chkmem.c \ - debug.c \ - clock.c - -blob_rest_elf32_DEPENDENCIES = \ - @CHKMEM@ \ - @DEBUG@ \ - @CLOCK@ - -blob_rest_elf32_LDFLAGS += \ - -Wl,-T,${top_srcdir}/src/rest-ld-script - - -blob_rest_elf32_LDADD += \ - @CHKMEM@ \ - @DEBUG@ \ - @CLOCK@ \ - -lgcc - - -blob_rest_SOURCES = - - -blob-rest: blob-rest-elf32 - $(OBJCOPY) $(OCFLAGS) $< $@ - - -# Finally specify how to build the full binary - -blob_SOURCES = - - -blob: blob-start blob-rest - rm -f $@ - dd if=blob-start of=$@ bs=1k conv=sync - dd if=blob-rest of=$@ bs=1k seek=1 - chmod +x blob - - -# automake administrativia - -EXTRA_DIST = \ - start-ld-script \ - rest-ld-script - - -INCLUDES += \ - -I${top_builddir}/include \ - -I${top_srcdir}/include - - -CLEANFILES = *~ + lib \ + blob \ + diag -DISTCLEANFILES = .deps/*.P +CLEANFILES = ${srcdir}/*~ --- debug.c DELETED --- --- error.c DELETED --- --- flash.c DELETED --- --- flashasm.S DELETED --- --- help.c DELETED --- --- icache.c DELETED --- --- init.c DELETED --- --- led.c DELETED --- --- linux.c DELETED --- --- main.c DELETED --- --- memory.c DELETED --- --- param_block.c DELETED --- --- reboot.c DELETED --- --- rest-ld-script DELETED --- --- serial.c DELETED --- --- terminal.c DELETED --- --- testmem2.S DELETED --- --- time.c DELETED --- --- trampoline.S DELETED --- --- util.c DELETED --- --- uucodec.c DELETED --- |