You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2006/07/23 10:59:14 UTC

svn commit: r424691 - /httpd/httpd/trunk/Makefile.win

Author: wrowe
Date: Sun Jul 23 01:59:14 2006
New Revision: 424691

URL: http://svn.apache.org/viewvc?rev=424691&view=rev
Log:

  Simplify; installtest was an -artifact-, not a design decision :-)

Modified:
    httpd/httpd/trunk/Makefile.win

Modified: httpd/httpd/trunk/Makefile.win
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/Makefile.win?rev=424691&r1=424690&r2=424691&view=diff
==============================================================================
--- httpd/httpd/trunk/Makefile.win (original)
+++ httpd/httpd/trunk/Makefile.win Sun Jul 23 01:59:14 2006
@@ -472,8 +472,6 @@
 	copy support\win32\$(LONG)\ApacheMonitor.$(src_exe) 	"$(inst_exe)" <.y
 	copy support\win32\$(LONG)\wintty.$(src_exe) 		"$(inst_exe)" <.y
 
-_install: _installbase _installconf
-
 
 # First we create the tree and populate the README so that 
 # whatever happens, all licensing has already propagated.  
@@ -482,7 +480,7 @@
 # Then hit docs of various sorts, then includes and libs,
 # and finally do the .conf magic.
 #
-_installbase:
+_install:
 	echo Y >.y
 	echo A >.A
 	-mkdir "$(INSTDIR)"
@@ -651,9 +649,6 @@
 	copy $(LONG)\libhttpd.lib 			"$(INSTDIR)\lib" <.y
 	copy modules\dav\main\$(LONG)\mod_dav.exp 	"$(INSTDIR)\lib" <.y
 	copy modules\dav\main\$(LONG)\mod_dav.lib 	"$(INSTDIR)\lib" <.y
-
-
-_installconf:
 	echo Y >.y
 	for %f in ( charset.conv magic mime.types ) do ( \
 	  copy docs\conf\%f "$(INSTDIR)\conf\%f.default" <.y && \



Re: svn commit: r424691 - /httpd/httpd/trunk/Makefile.win

Posted by Mladen Turk <mt...@apache.org>.
wrowe@apache.org wrote:
> Author: wrowe
> Date: Sun Jul 23 01:59:14 2006
> New Revision: 424691
> 
> URL: http://svn.apache.org/viewvc?rev=424691&view=rev
> Log:
> 
>   Simplify; installtest was an -artifact-, not a design decision :-)
>

Well, I was not sure if you really need a separate install config
target. Nevertheless, since the Makefile.win is manually maintained,
how about to consider creating a full-blown command line make for VC
allowing multiple CPU targets and VC versions as well.
I proposed the multiple target build for apr some time ago,
that we are using at JBoss to build the apr for multiple cpus.
I know that the maintainer needs to know the MS makefile, but I
suppose the same applies to the GNU build system.

Regards,
Mladen.