Update of /cvsroot/blob/blob/src/blob
In directory usw-pr-cvs1:/tmp/cvs-serv11717/src/blob
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/blob/Makefile.am,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- Makefile.am 2002/01/29 17:08:20 1.18
+++ Makefile.am 2002/01/29 17:47:23 1.19
@@ -169,6 +169,7 @@
@CHKMEM@ \
@DEBUG@ \
@CLOCK@ \
+ ${top_builddir}/src/commands/libcommands.a \
${top_builddir}/src/lib/libblob.a \
rest-ld-script
@@ -184,7 +185,8 @@
@CHKMEM@ \
@DEBUG@ \
@CLOCK@ \
- -L${top_builddir}/src/lib -lblob \
+ -L${top_builddir}/src/commands -L${top_builddir}/src/lib \
+ -lcommands -lblob \
-lgcc
|