From: Erik M. <er...@us...> - 2002-02-17 20:03:45
|
Update of /cvsroot/blob/blob/src/blob In directory usw-pr-cvs1:/tmp/cvs-serv28493/src/blob Modified Files: .cvsignore Makefile.am Removed Files: commands.c Log Message: Add infrastructure to select at compile-time which commands should be linked with blob. Index: .cvsignore =================================================================== RCS file: /cvsroot/blob/blob/src/blob/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 4 Dec 2001 00:14:56 -0000 1.2 +++ .cvsignore 17 Feb 2002 20:03:41 -0000 1.3 @@ -1,6 +1,7 @@ Makefile.in Makefile blob* +commands.c rest-ld-script *.o .deps Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/blob/Makefile.am,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- Makefile.am 17 Feb 2002 15:41:53 -0000 1.25 +++ Makefile.am 17 Feb 2002 20:03:41 -0000 1.26 @@ -41,12 +41,15 @@ # ---- Built sources ------------------------------------------------- BUILT_SOURCES = \ - rest-ld-script + rest-ld-script \ + commands.c rest-ld-script: rest-ld-script.in $(CC) -x c-header -undef -nostdinc ${INCLUDES} -E $< | sed 's/^#.*//' > $@ +commands.c: + ${top_srcdir}/src/commands/make_commands.sh @BLOB_COMMANDS@ > $@ # ---- Blob first stage loader --------------------------------------- @@ -141,7 +144,6 @@ EXTRA_blob_rest_elf32_SOURCES = \ chkmem.c \ clock.c \ - debug.c \ amd32.c intel16.c intel32.c nullflash.c \ cramfs.c \ compr_rtime.c compr_rubin.c jffs2.c \ @@ -156,7 +158,6 @@ @BLOB_CHKMEM_OBJS@ \ @BLOB_CLOCK_OBJS@ \ @BLOB_CRAMFS_OBJS@ \ - @BLOB_DEBUG_OBJS@ \ @BLOB_FLASH_OBJS@ \ @BLOB_JFFS2_OBJS@ \ @BLOB_PLATFORM_OBJS@ \ @@ -171,7 +172,6 @@ @BLOB_CHKMEM_OBJS@ \ @BLOB_CLOCK_OBJS@ \ @BLOB_CRAMFS_OBJS@ \ - @BLOB_DEBUG_OBJS@ \ @BLOB_FLASH_OBJS@ \ @BLOB_JFFS2_OBJS@ \ @BLOB_PLATFORM_OBJS@ \ @@ -230,7 +230,7 @@ rest-ld-script.in -CLEANFILES = ${srcdir}/*~ rest-ld-script *.map +CLEANFILES = ${srcdir}/*~ rest-ld-script commands.c *.map DISTCLEANFILES = ${builddir}/.deps/*.P --- commands.c DELETED --- |