诸暨麻将添加redis
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

54 lines
2.1 KiB

  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2011, 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. pkginclude_HEADERS = \
  23. curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \
  24. typecheck-gcc.h curlbuild.h curlrules.h
  25. pkgincludedir= $(includedir)/curl
  26. # curlbuild.h does not exist in the git tree. When the original libcurl
  27. # source code distribution archive file is created, curlbuild.h.dist is
  28. # renamed to curlbuild.h and included in the tarball so that it can be
  29. # used directly on non-configure systems.
  30. #
  31. # The distributed curlbuild.h will be overwritten on configure systems
  32. # when the configure script runs, with one that is suitable and specific
  33. # to the library being configured and built.
  34. #
  35. # curlbuild.h.in is the distributed template file from which the configure
  36. # script creates curlbuild.h at library configuration time, overwiting the
  37. # one included in the distribution archive.
  38. #
  39. # curlbuild.h.dist is not included in the source code distribution archive.
  40. EXTRA_DIST = curlbuild.h.in
  41. DISTCLEANFILES = curlbuild.h
  42. checksrc:
  43. @@PERL@ $(top_srcdir)/lib/checksrc.pl -Wcurlbuild.h -D$(top_srcdir)/include/curl $(pkginclude_HEADERS) $(EXTRA_DIST)
  44. if CURLDEBUG
  45. # for debug builds, we scan the sources on all regular make invokes
  46. all-local: checksrc
  47. endif