Makefile.dist 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 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 https://curl.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. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. all:
  25. ./configure
  26. make
  27. ssl:
  28. ./configure --with-openssl
  29. make
  30. vc:
  31. cd winbuild
  32. nmake /f Makefile.vc MACHINE=x86
  33. vc-x64:
  34. cd winbuild
  35. nmake /f Makefile.vc MACHINE=x64
  36. cygwin:
  37. ./configure
  38. make
  39. cygwin-ssl:
  40. ./configure --with-openssl
  41. make
  42. unix: all
  43. unix-ssl: ssl
  44. linux: all
  45. linux-ssl: ssl
  46. ca-bundle: scripts/mk-ca-bundle.pl
  47. @echo "generate a fresh ca-bundle.crt"
  48. @perl $< -b -l -u lib/ca-bundle.crt
  49. ca-firefox: scripts/firefox-db2pem.sh
  50. @echo "generate a fresh ca-bundle.crt"
  51. ./scripts/firefox-db2pem.sh lib/ca-bundle.crt