From: Erik M. <er...@us...> - 2002-01-29 17:47:26
|
Update of /cvsroot/blob/blob/src/diag In directory usw-pr-cvs1:/tmp/cvs-serv11717/src/diag Modified Files: Makefile.am Log Message: Add a directory for the commands. The idea is to have a single file per command so the linker will automatically link in the correct object files from libcommands.a. Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/src/diag/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile.am 2002/01/29 17:08:21 1.8 +++ Makefile.am 2002/01/29 17:47:23 1.9 @@ -61,6 +61,8 @@ diag_elf32_DEPENDENCIES = \ @LCD@ \ @DIAG_PLATFORM_OBJ@ \ + ${top_builddir}/src/commands/libcommands.a \ + ${top_builddir}/src/lib/libblob.a \ ld-script diag_elf32_LDFLAGS += \ @@ -71,7 +73,8 @@ diag_elf32_LDADD += \ @LCD@ \ @DIAG_PLATFORM_OBJ@ \ - -L${top_builddir}/src/lib -lblob \ + -L${top_builddir}/src/commands -L${top_builddir}/src/lib \ + -lcommands -lblob \ -lgcc |