Makefile.msvc.names 2.8 KB

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