Echo the linker command being used and add a dependency on the activemq libary to the test executables.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@419043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-07-04 15:48:36 +00:00
parent 98b61e439e
commit 4493e89ed7
1 changed files with 8 additions and 2 deletions

View File

@ -84,13 +84,19 @@ default: all
$(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: $@'