Makefile.am 983 B

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # $Id$
  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