You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/05/27 23:51:09 UTC

cvs commit: apr-util/test Makefile.in

jorton      2004/05/27 14:51:09

  Modified:    test     Tag: APU_0_9_BRANCH Makefile.in
  Log:
  * test/Makefile.in: Make testxlate build; use -no-install for building
  test binaries.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.37.2.1  +6 -1      apr-util/test/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/test/Makefile.in,v
  retrieving revision 1.37
  retrieving revision 1.37.2.1
  diff -d -u -r1.37 -r1.37.2.1
  --- Makefile.in	28 May 2003 04:45:46 -0000	1.37
  +++ Makefile.in	27 May 2004 21:51:09 -0000	1.37.2.1
  @@ -13,7 +13,7 @@
   # bring in rules.mk for standard functionality
   @INCLUDE_RULES@
   PROGRAM_DEPENDENCIES = @APRUTIL_LIBS@
  -APRUTIL_LDFLAGS = @APRUTIL_LDFLAGS@
  +APRUTIL_LDFLAGS = @APRUTIL_LDFLAGS@ -no-install
   
   all: $(PROGRAMS)
   
  @@ -85,4 +85,9 @@
   testpass_LDADD =  $(TARGET_LIB_PATH)
   testpass: $(testpass_OBJECTS) $(testpass_LDADD)
   	$(LINK) $(APRUTIL_LDFLAGS) $(testpass_OBJECTS) $(testpass_LDADD) $(PROGRAM_DEPENDENCIES)
  +
  +testxlate_OBJECTS = testxlate.lo
  +testxlate_LDADD =  $(TARGET_LIB_PATH)
  +testxlate: $(testxlate_OBJECTS) $(testxlate_LDADD)
  +	$(LINK) $(APRUTIL_LDFLAGS) $(testxlate_OBJECTS) $(testxlate_LDADD) $(PROGRAM_DEPENDENCIES)