You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/10/26 01:50:04 UTC

svn commit: r588394 - /apr/apr/trunk/test/Makefile.in

Author: wrowe
Date: Thu Oct 25 16:50:03 2007
New Revision: 588394

URL: http://svn.apache.org/viewvc?rev=588394&view=rev
Log:
Back out this change, let libmod_test carry all linkage dependencies and
mod_test stand alone without it's bindings.

Modified:
    apr/apr/trunk/test/Makefile.in

Modified: apr/apr/trunk/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.in?rev=588394&r1=588393&r2=588394&view=diff
==============================================================================
--- apr/apr/trunk/test/Makefile.in (original)
+++ apr/apr/trunk/test/Makefile.in Thu Oct 25 16:50:03 2007
@@ -54,9 +54,7 @@
 
 LOCAL_LIBS=../lib@APR_LIBNAME@.la
 
-CLEAN_TARGETS = testfile.tmp mod_test.slo proc_child@EXEEXT@ occhild@EXEEXT@ \
-	readchild@EXEEXT@ tryread@EXEEXT@ sockchild@EXEEXT@ \
-	globalmutexchild@EXEEXT@ lfstests/*.bin \
+CLEAN_TARGETS = testfile.tmp lfstests/*.bin \
 	data/test*.txt data/test*.dat data/apr.testshm.shm
 
 CLEAN_SUBDIRS = internal
@@ -66,7 +64,7 @@
 
 # link programs using -no-install to get real executables not
 # libtool wrapper scripts which link an executable when first run.
-LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE)\
+LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) \
 	    @LT_NO_INSTALL@ $(ALL_LDFLAGS) -o $@
 
 # STDTEST_PORTABLE;
@@ -109,7 +107,7 @@
 mod_test.lo: $(srcdir)/mod_test.c
 	$(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -prefer-pic -o $@ -c $<
 
-mod_test.la: mod_test.lo $(LOCAL_LIBS)
+mod_test.la: mod_test.lo
 	$(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) -rpath `pwd` -module \
 	  -avoid-version $(LT_LDFLAGS) $(ALL_LDFLAGS) -o $@ $+ $(ALL_LIBS)