Makefile.am 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2009, 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. AUTOMAKE_OPTIONS = foreign
  23. ACLOCAL_AMFLAGS = -I m4
  24. CMAKE_DIST = CMakeLists.txt CMake/CheckTypeSize.c.in CMake/CheckTypeSize.cmake \
  25. CMake/CMakeConfigurableFile.in CMake/CurlCheckCSourceCompiles.cmake \
  26. CMake/CurlCheckCSourceRuns.cmake CMake/CurlTests.c CMake/FindOpenSSL.cmake \
  27. CMake/FindZLIB.cmake CMake/OtherTests.cmake CMake/Platforms/WindowsCache.cmake \
  28. CMake/Utilities.cmake include/curl/curlbuild.h.cmake
  29. EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
  30. curl-style.el sample.emacs RELEASE-NOTES buildconf \
  31. libcurl.pc.in vc6curl.dsw MacOSX-Framework Android.mk $(CMAKE_DIST)
  32. bin_SCRIPTS = curl-config
  33. SUBDIRS = lib src
  34. DIST_SUBDIRS = $(SUBDIRS) tests include packages docs
  35. pkgconfigdir = $(libdir)/pkgconfig
  36. pkgconfig_DATA = libcurl.pc
  37. dist-hook:
  38. rm -rf $(top_builddir)/tests/log
  39. find $(distdir) -name "*.dist" -exec rm {} \;
  40. (distit=`find $(srcdir) -name "*.dist" | grep -v ./ares/`; \
  41. for file in $$distit; do \
  42. strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
  43. cp $$file $(distdir)$$strip; \
  44. done)
  45. html:
  46. cd docs; make html
  47. pdf:
  48. cd docs; make pdf
  49. check: test examples
  50. if CROSSCOMPILING
  51. test-full: test
  52. test-torture: test
  53. test:
  54. @echo "NOTICE: we can't run the tests when cross-compiling!"
  55. else
  56. test:
  57. @(cd tests; $(MAKE) all quiet-test)
  58. test-full:
  59. @(cd tests; $(MAKE) all full-test)
  60. test-torture:
  61. @(cd tests; $(MAKE) all torture-test)
  62. endif
  63. examples:
  64. @(cd docs/examples; $(MAKE) check)
  65. clean-local:
  66. @(cd tests; $(MAKE) clean)
  67. @(cd docs; $(MAKE) clean)
  68. #
  69. # Build source and binary rpms. For rpm-3.0 and above, the ~/.rpmmacros
  70. # must contain the following line:
  71. # %_topdir /home/loic/local/rpm
  72. # and that /home/loic/local/rpm contains the directory SOURCES, BUILD etc.
  73. #
  74. # cd /home/loic/local/rpm ; mkdir -p SOURCES BUILD RPMS/i386 SPECS SRPMS
  75. #
  76. # If additional configure flags are needed to build the package, add the
  77. # following in ~/.rpmmacros
  78. # %configure CFLAGS="%{optflags}" ./configure %{_target_platform} --prefix=%{_prefix} ${AM_CONFIGFLAGS}
  79. # and run make rpm in the following way:
  80. # AM_CONFIGFLAGS='--with-uri=/home/users/loic/local/RedHat-6.2' make rpm
  81. #
  82. rpms:
  83. $(MAKE) RPMDIST=curl rpm
  84. $(MAKE) RPMDIST=curl-ssl rpm
  85. rpm:
  86. RPM_TOPDIR=`rpm --showrc | $(PERL) -n -e 'print if(s/.*_topdir\s+(.*)/$$1/)'` ; \
  87. cp $(srcdir)/packages/Linux/RPM/$(RPMDIST).spec $$RPM_TOPDIR/SPECS ; \
  88. cp $(PACKAGE)-$(VERSION).tar.gz $$RPM_TOPDIR/SOURCES ; \
  89. rpm -ba --clean --rmsource $$RPM_TOPDIR/SPECS/$(RPMDIST).spec ; \
  90. mv $$RPM_TOPDIR/RPMS/i386/$(RPMDIST)-*.rpm . ; \
  91. mv $$RPM_TOPDIR/SRPMS/$(RPMDIST)-*.src.rpm .
  92. #
  93. # Build a Solaris pkgadd format file
  94. # run 'make pkgadd' once you've done './configure' and 'make' to make a Solaris pkgadd format
  95. # file (which ends up back in this directory).
  96. # The pkgadd file is in 'pkgtrans' format, so to install on Solaris, do
  97. # pkgadd -d ./HAXXcurl-*
  98. #
  99. # gak - libtool requires an absoulte directory, hence the pwd below...
  100. pkgadd:
  101. umask 022 ; \
  102. make install DESTDIR=`/bin/pwd`/packages/Solaris/root ; \
  103. cat COPYING > $(srcdir)/packages/Solaris/copyright ; \
  104. cd $(srcdir)/packages/Solaris && $(MAKE) package
  105. #
  106. # Build a cygwin binary tarball installation file
  107. # resulting .tar.bz2 file will end up at packages/Win32/cygwin
  108. cygwinbin:
  109. $(MAKE) -C packages/Win32/cygwin cygwinbin
  110. # We extend the standard install with a custom hook:
  111. install-data-hook:
  112. cd include && $(MAKE) install
  113. cd docs && $(MAKE) install
  114. # We extend the standard uninstall with a custom hook:
  115. uninstall-hook:
  116. cd include && $(MAKE) uninstall
  117. cd docs && $(MAKE) uninstall
  118. ca-bundle: lib/mk-ca-bundle.pl
  119. @echo "generate a fresh ca-bundle.crt"
  120. @perl $< -b -l -u lib/ca-bundle.crt
  121. ca-firefox: lib/firefox-db2pem.sh
  122. @echo "generate a fresh ca-bundle.crt"
  123. ./lib/firefox-db2pem.sh lib/ca-bundle.crt