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/11 18:12:11 UTC

svn commit: r583864 - /apr/apr/trunk/test/internal/Makefile.win

Author: wrowe
Date: Thu Oct 11 09:12:10 2007
New Revision: 583864

URL: http://svn.apache.org/viewvc?rev=583864&view=rev
Log:
Same change as test/Makefile.win; we need to watch for
a recompiled lib.

Modified:
    apr/apr/trunk/test/internal/Makefile.win

Modified: apr/apr/trunk/test/internal/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/internal/Makefile.win?rev=583864&r1=583863&r2=583864&view=diff
==============================================================================
--- apr/apr/trunk/test/internal/Makefile.win (original)
+++ apr/apr/trunk/test/internal/Makefile.win Thu Oct 11 09:12:10 2007
@@ -76,15 +76,17 @@
 	 $(STATIC_CFLAGS) $(DEBUG_CFLAGS) /D "BINPATH=$(OUTDIR:\=/)" \
 	 /D _DEBUG /D WIN32 /Fo"$(INTDIR)/" /FD
 
-LD_LIBS = $(LOCAL_LIB) kernel32.lib advapi32.lib ws2_32.lib wsock32.lib \
+LD_LIBS = kernel32.lib advapi32.lib ws2_32.lib wsock32.lib \
 	  ole32.lib shell32.lib rpcrt4.lib
 
 LDFLAGS = /nologo /debug /subsystem:console /incremental:no 
 SHLDFLAGS = /nologo /dll /debug /subsystem:windows /incremental:no
 
-.c{$(OUTDIR)}.exe:
-	$(CL) $(CFLAGS) -c $** -Fd$(INTDIR)\ $(INCLUDES) 
-	$(LD) $(LDFLAGS) /out:"$@" $*.obj $(LD_LIBS)
+.c{$(INTDIR)}.obj:
+	$(CL) $(CFLAGS) -c $< -Fd$(INTDIR)\ $(INCLUDES) 
+
+$(OUTDIR)\testucs.exe: $(INTDIR)\testucs.obj $(LOCAL_LIB) 
+	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
 	@if exist "$@.manifest" \
 	    mt.exe -manifest "$@.manifest" -outputresource:$@;1