William A. Rowe, Jr. wrote:
 >
 > Ugh.  -1 ... you eliminate the ability for VC5 users to build these
 > modules.
 > VC5 never supported invoking the IDE from the command line.
 >
 > No, we don't distribute .mak files from CVS, but any VC5 or VC6 user
 > can export the make files after doing one full build from the IDE [you need
 > all the files to exist before VC will determine the references correctly.]

I see, I see.


 >
 > Here is what's left of the patch I applied.  The intermingled stuff was
 > too much to battle, feel free to submit anything I'd missed, aside from
 > eliminating .mak builds.

A few 'silencers'.



Index: Makefile.win
===================================================================
RCS file: /home/cvspublic/httpd-2.0/Makefile.win,v
retrieving revision 1.109
diff -u -r1.109 Makefile.win
--- Makefile.win        18 Jul 2002 18:57:36 -0000      1.109
+++ Makefile.win        18 Jul 2002 19:26:11 -0000
@@ -69,7 +69,7 @@
        devenv Apache.sln /useenv $(CTARGET) $(LONG) /project mod_ssl
        devenv Apache.sln /useenv $(CTARGET) $(LONG) /project abs
 !ELSE
-       msdev Apache.dsw /USEENV /MAKE \
+       @msdev Apache.dsw /USEENV /MAKE \
                "mod_ssl - Win32 $(LONG)" \
                "abs - Win32 $(LONG)" /NORECURSE $(CTARGET)
 !ENDIF
@@ -96,7 +96,7 @@
 !ELSEIF EXIST("Apache.sln")
        devenv Apache.sln /useenv $(CTARGET) $(LONG) /project mod_deflate
 !ELSE
-       msdev Apache.dsw /USEENV /MAKE \
+       @msdev Apache.dsw /USEENV /MAKE \
                "mod_deflate - Win32 $(LONG)" /NORECURSE $(CTARGET)
 !ENDIF
 
@@ -152,16 +152,16 @@
        cd ..
 
 _apacher: 
-       $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build
+       @$(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build
 
 _apached: 
-       $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build
+       @$(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build
 
 installr: 
-       $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build _install
+       @$(MAKE) $(MAKEOPT) -f Makefile.win SHORT=R LONG=Release _build _install
 
 installd: 
-       $(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build _install
+       @$(MAKE) $(MAKEOPT) -f Makefile.win SHORT=D LONG=Debug   _build _install
 
 clean: _cleanr _cleand
        -if exist Browse\. rd /s Browse < << > nul

Reply via email to