Revert "Imported Upstream version 7.53.1"
[platform/upstream/curl.git] / winbuild / Makefile.msvc.names
1 #***************************************************************************\r
2 #                                  _   _ ____  _\r
3 #  Project                     ___| | | |  _ \| |\r
4 #                             / __| | | | |_) | |\r
5 #                            | (__| |_| |  _ <| |___\r
6 #                             \___|\___/|_| \_\_____|\r
7 #\r
8 # Copyright (C) 1999 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.\r
9 #\r
10 # This software is licensed as described in the file COPYING, which\r
11 # you should have received as part of this distribution. The terms\r
12 # are also available at https://curl.haxx.se/docs/copyright.html.\r
13 #\r
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell\r
15 # copies of the Software, and permit persons to whom the Software is\r
16 # furnished to do so, under the terms of the COPYING file.\r
17 #\r
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY\r
19 # KIND, either express or implied.\r
20 #\r
21 #***************************************************************************\r
22 \r
23 #\r
24 # This file is included from MSVC makefiles located in lib and src,\r
25 # providing libcurl common file names required by these makefiles.\r
26 #\r
27 \r
28 # ------------------\r
29 # libcurl base name\r
30 # ------------------\r
31 \r
32 !IF !DEFINED(LIB_NAME) || "$(LIB_NAME)" == ""\r
33 LIB_NAME = libcurl\r
34 !ENDIF\r
35 \r
36 # -------------------------------------------------\r
37 # libcurl static and dynamic libraries common base\r
38 # file names for release and debug configurations\r
39 # -------------------------------------------------\r
40 \r
41 !IF !DEFINED(LIB_NAME_STA_REL) || "$(LIB_NAME_STA_REL)" == ""\r
42 LIB_NAME_STA_REL = $(LIB_NAME)\r
43 !ENDIF\r
44 \r
45 !IF !DEFINED(LIB_NAME_STA_DBG) || "$(LIB_NAME_STA_DBG)" == ""\r
46 LIB_NAME_STA_DBG = $(LIB_NAME_STA_REL)d\r
47 !ENDIF\r
48 \r
49 !IF !DEFINED(LIB_NAME_DYN_REL) || "$(LIB_NAME_DYN_REL)" == ""\r
50 LIB_NAME_DYN_REL = $(LIB_NAME)\r
51 !ENDIF\r
52 \r
53 !IF !DEFINED(LIB_NAME_DYN_DBG) || "$(LIB_NAME_DYN_DBG)" == ""\r
54 LIB_NAME_DYN_DBG = $(LIB_NAME_DYN_REL)d\r
55 !ENDIF\r
56 \r
57 # --------------------------------------------\r
58 # Base names for libcurl DLL import libraries\r
59 # --------------------------------------------\r
60 \r
61 !IF !DEFINED(LIB_NAME_IMP_REL) || "$(LIB_NAME_IMP_REL)" == ""\r
62 LIB_NAME_IMP_REL = $(LIB_NAME_DYN_REL)_imp\r
63 !ENDIF\r
64 \r
65 !IF !DEFINED(LIB_NAME_IMP_DBG) || "$(LIB_NAME_IMP_DBG)" == ""\r
66 LIB_NAME_IMP_DBG = $(LIB_NAME_DYN_DBG)_imp\r
67 !ENDIF\r
68 \r
69 # --------------------------------------\r
70 # File names with extension and no path\r
71 # --------------------------------------\r
72 \r
73 LIBCURL_STA_LIB_REL = $(LIB_NAME_STA_REL).lib\r
74 LIBCURL_STA_LIB_DBG = $(LIB_NAME_STA_DBG).lib\r
75 LIBCURL_DYN_LIB_REL = $(LIB_NAME_DYN_REL).dll\r
76 LIBCURL_DYN_LIB_DBG = $(LIB_NAME_DYN_DBG).dll\r
77 LIBCURL_IMP_LIB_REL = $(LIB_NAME_IMP_REL).lib\r
78 LIBCURL_IMP_LIB_DBG = $(LIB_NAME_IMP_DBG).lib\r
79 LIBCURL_DYN_LIB_PDB = $(LIB_NAME_IMP_DBG).pdb\r
80 \r
81 # End of Makefile.msvc.names\r