From: William A. Rowe Jr Date: Wed, 27 Feb 2002 17:41:34 +0000 (+0000) Subject: This baffled .mak exported build targets for mod_ssl/abs. They will X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c910261b46df81fe70257780d7ceb33db801b0c3;p=thirdparty%2Fapache%2Fhttpd.git This baffled .mak exported build targets for mod_ssl/abs. They will recognize their output only as .\Release|Debug\mod_ssl.so, etc. Without the leading .\ kept getting 'dunno how to make ... target' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93602 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 671909c8567..01bc6c8858a 100644 --- a/Makefile.win +++ b/Makefile.win @@ -55,10 +55,10 @@ SSLBIN=out32dll _tryssl: !IF EXIST("modules\ssl\mod_ssl.mak") cd modules\ssl - $(MAKE) $(MAKEOPT) -f mod_ssl.mak CFG="mod_ssl - Win32 $(LONG)" RECURSE=0 $(LONG)\mod_ssl.so + $(MAKE) $(MAKEOPT) -f mod_ssl.mak CFG="mod_ssl - Win32 $(LONG)" RECURSE=0 .\$(LONG)\mod_ssl.so cd ..\.. cd support - $(MAKE) $(MAKEOPT) -f abs.mak CFG="abs - Win32 $(LONG)" RECURSE=0 $(LONG)\abs.exe + $(MAKE) $(MAKEOPT) -f abs.mak CFG="abs - Win32 $(LONG)" RECURSE=0 .\$(LONG)\abs.exe cd .. !ELSE msdev Apache.dsw /USEENV /MAKE \