Makefile.am
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. #
  2. # $Id: Makefile.am,v 1.52 2008-08-07 00:29:08 yangtse Exp $
  3. #
  4. AUTOMAKE_OPTIONS = foreign nostdinc
  5. EXTRA_DIST = README Makefile.example Makefile.inc Makefile.m32 
  6. makefile.dj $(COMPLICATED_EXAMPLES)
  7. # Specify our include paths here, and do it relative to $(top_srcdir) and
  8. # $(top_builddir), to ensure that these paths which belong to the library
  9. # being currently built and tested are searched before the library which
  10. # might possibly already be installed in the system.
  11. #
  12. # $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
  13. # $(top_srcdir)/include is for libcurl's external include files
  14. INCLUDES = -I$(top_builddir)/include 
  15.            -I$(top_srcdir)/include
  16. LIBDIR = $(top_builddir)/lib
  17. if STATICLIB
  18. # we need this define when building with a static lib on Windows
  19. STATICCPPFLAGS = -DCURL_STATICLIB
  20. endif
  21. CPPFLAGS = -DCURL_NO_OLDIES $(STATICCPPFLAGS)
  22. # Dependencies
  23. LDADD = $(LIBDIR)/libcurl.la
  24. # Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
  25. include Makefile.inc