You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/07/04 17:48:37 UTC

svn commit: r419043 - /incubator/activemq/trunk/activemq-cpp/makefile.cfg

Author: chirino
Date: Tue Jul  4 08:48:36 2006
New Revision: 419043

URL: http://svn.apache.org/viewvc?rev=419043&view=rev
Log:
Echo the linker command being used and add a dependency on the activemq libary to the test executables.

Modified:
    incubator/activemq/trunk/activemq-cpp/makefile.cfg

Modified: incubator/activemq/trunk/activemq-cpp/makefile.cfg
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-cpp/makefile.cfg?rev=419043&r1=419042&r2=419043&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-cpp/makefile.cfg (original)
+++ incubator/activemq/trunk/activemq-cpp/makefile.cfg Tue Jul  4 08:48:36 2006
@@ -84,13 +84,19 @@
 
 $(LIBFILE): $(OFILES) $(DEPLIBS)
 	$(ECHO) "    - Creating static library file "$@
+	$(ECHO) "    - $(AR) $(ARFLAGS) $@ $(OFILES)"
 	$(AR) $(ARFLAGS) $@ $(OFILES)
+	$(ECHO) 'Finished building target: $@'
 	
-$(TESTEXE):	$(OTESTFILES)
+$(TESTEXE):	$(OTESTFILES) $(LIBFILE)
+	$(ECHO) "    - Creating executable "$@
+	$(ECHO) "    - $(LD) -o $@ $(OTESTFILES) $(LDFLAGS)"
 	$(LD) -o $@ $(OTESTFILES) $(LDFLAGS)
 	$(ECHO) 'Finished building target: $@'
 	
-$(INTEGRATIONEXE):	$(OINTEGRATIONFILES)
+$(INTEGRATIONEXE):	$(OINTEGRATIONFILES) $(LIBFILE)
+	$(ECHO) "    - Creating executable "$@
+	$(ECHO) "    - $(LD) -o $@ $(OINTEGRATIONFILES) $(LDFLAGS)"
 	$(LD) -o $@ $(OINTEGRATIONFILES) $(LDFLAGS)
 	$(ECHO) 'Finished building target: $@'