Makefile.dist 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. djgpp%:
  37. $(MAKE) -C lib -f Makefile.mk CFG=$@ CROSSPREFIX=i586-pc-msdosdjgpp-
  38. $(MAKE) -C src -f Makefile.mk CFG=$@ CROSSPREFIX=i586-pc-msdosdjgpp-
  39. cygwin:
  40. ./configure
  41. make
  42. cygwin-ssl:
  43. ./configure --with-openssl
  44. make
  45. amiga%:
  46. $(MAKE) -C lib -f Makefile.mk CFG=$@ CROSSPREFIX=m68k-amigaos-
  47. $(MAKE) -C src -f Makefile.mk CFG=$@ CROSSPREFIX=m68k-amigaos-
  48. unix: all
  49. unix-ssl: ssl
  50. linux: all
  51. linux-ssl: ssl
  52. ca-bundle: scripts/mk-ca-bundle.pl
  53. @echo "generate a fresh ca-bundle.crt"
  54. @perl $< -b -l -u lib/ca-bundle.crt
  55. ca-firefox: lib/firefox-db2pem.sh
  56. @echo "generate a fresh ca-bundle.crt"
  57. ./lib/firefox-db2pem.sh lib/ca-bundle.crt