diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-02-22 18:39:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-22 18:39:40 +0000 |
commit | e1290d34107e2a13ae211d7f5f8755c1bc2514de (patch) | |
tree | 82567249ddb73f7d232458f100046ddd678e5c49 | |
parent | 994f16d733b6000c2b14acb07aa01721a7be5928 (diff) | |
download | c-ares-e1290d34107e2a13ae211d7f5f8755c1bc2514de.tar.gz c-ares-e1290d34107e2a13ae211d7f5f8755c1bc2514de.tar.bz2 c-ares-e1290d34107e2a13ae211d7f5f8755c1bc2514de.zip |
Updated as suggested by Samuel Díaz García
-rw-r--r-- | vc/adig/adig.mak | 8 | ||||
-rw-r--r-- | vc/ahost/ahost.mak | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/vc/adig/adig.mak b/vc/adig/adig.mak index 183bee4..4427f81 100644 --- a/vc/adig/adig.mak +++ b/vc/adig/adig.mak @@ -185,24 +185,24 @@ SOURCE=..\..\getopt.c !IF "$(CFG)" == "adig - Win32 Release"
"areslib - Win32 Release" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Release"
cd "..\adig"
"areslib - Win32 ReleaseCLEAN" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Release" RECURSE=1 CLEAN
cd "..\adig"
!ELSEIF "$(CFG)" == "adig - Win32 Debug"
"areslib - Win32 Debug" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Debug"
cd "..\adig"
"areslib - Win32 DebugCLEAN" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Debug" RECURSE=1 CLEAN
cd "..\adig"
diff --git a/vc/ahost/ahost.mak b/vc/ahost/ahost.mak index a0d3ebd..109a00c 100644 --- a/vc/ahost/ahost.mak +++ b/vc/ahost/ahost.mak @@ -195,24 +195,24 @@ SOURCE=..\..\ahost.c !IF "$(CFG)" == "ahost - Win32 Release"
"areslib - Win32 Release" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Release"
cd "..\ahost"
"areslib - Win32 ReleaseCLEAN" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Release" RECURSE=1 CLEAN
cd "..\ahost"
!ELSEIF "$(CFG)" == "ahost - Win32 Debug"
"areslib - Win32 Debug" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Debug"
cd "..\ahost"
"areslib - Win32 DebugCLEAN" :
- cd "\ARES-1.1.1\vc\areslib"
+ cd ".\areslib"
$(MAKE) /$(MAKEFLAGS) /F ".\areslib.mak" CFG="areslib - Win32 Debug" RECURSE=1 CLEAN
cd "..\ahost"
|