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/15 04:01:39 UTC

svn commit: r584654 - /apr/apr/branches/1.2.x/test/Makefile.win

Author: wrowe
Date: Sun Oct 14 19:01:38 2007
New Revision: 584654

URL: http://svn.apache.org/viewvc?rev=584654&view=rev
Log:
We can and aught to let folks build sendfile.exe.  This also adds
some comments for clarity from trunk/'s flavor.

Modified:
    apr/apr/branches/1.2.x/test/Makefile.win

Modified: apr/apr/branches/1.2.x/test/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/test/Makefile.win?rev=584654&r1=584653&r2=584654&view=diff
==============================================================================
--- apr/apr/branches/1.2.x/test/Makefile.win (original)
+++ apr/apr/branches/1.2.x/test/Makefile.win Sun Oct 14 19:01:38 2007
@@ -47,6 +47,9 @@
 	$(OUTDIR)\testlockperf.exe \
 	$(OUTDIR)\testmutexscope.exe
 
+OTHER_PROGRAMS = \
+	$(OUTDIR)\sendfile.exe
+
 TESTALL_COMPONENTS = \
 	$(OUTDIR)\mod_test.dll \
 	$(OUTDIR)\occhild.exe \
@@ -125,6 +128,8 @@
 .c{$(INTDIR)}.obj::
 	$(CL) $(CFLAGS) -c $< -Fd$(INTDIR)\ $(INCLUDES)
 
+# STDTEST_PORTABLE;
+
 $(OUTDIR)\testall.exe: $(ALL_TESTS) $(INTDIR)\abts.obj $(LOCAL_LIB)
 	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
 	@if exist "$@.manifest" \
@@ -144,6 +149,15 @@
 	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
 	@if exist "$@.manifest" \
 	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+# OTHER_PROGRAMS;
+
+$(OUTDIR)\sendfile.exe: $(INTDIR)\sendfile.obj $(LOCAL_LIB)
+	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+	@if exist "$@.manifest" \
+	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+# TESTALL_COMPONENTS;
 
 $(OUTDIR)\globalmutexchild.exe: $(INTDIR)\globalmutexchild.obj $(LOCAL_LIB)
 	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)