Makefile.am 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2004, 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. # $Id: Makefile.am,v 1.19 2004/01/30 09:26:23 bagder Exp $
  22. ###########################################################################
  23. AUTOMAKE_OPTIONS = foreign nostdinc
  24. # $(top_srcdir)/include/curl is for the main curl include files, to make it
  25. # easier to include this specific set of curl headers, and NOT the ones
  26. # possibly already installed in the system.
  27. # -I$(top_srcdir)/lib is for the setup.h file, included by test.h
  28. # -I$(top_builddir)/lib is for the config.h file, possibly included by the
  29. # setup.h file
  30. INCLUDES = -I$(top_srcdir)/include/curl \
  31. -I$(top_srcdir)/lib \
  32. -I$(top_builddir)/lib
  33. LIBDIR = $(top_builddir)/lib
  34. SUPPORTFILES = first.c test.h
  35. # here are all tools used for running libcurl tests
  36. noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 lib507 \
  37. lib508 lib509 lib510
  38. lib500_SOURCES = lib500.c $(SUPPORTFILES)
  39. lib500_LDADD = $(LIBDIR)/libcurl.la
  40. lib500_DEPENDENCIES = $(LIBDIR)/libcurl.la
  41. lib501_SOURCES = lib501.c $(SUPPORTFILES)
  42. lib501_LDADD = $(LIBDIR)/libcurl.la
  43. lib501_DEPENDENCIES = $(LIBDIR)/libcurl.la
  44. lib502_SOURCES = lib502.c $(SUPPORTFILES)
  45. lib502_LDADD = $(LIBDIR)/libcurl.la
  46. lib502_DEPENDENCIES = $(LIBDIR)/libcurl.la
  47. lib503_SOURCES = lib503.c $(SUPPORTFILES)
  48. lib503_LDADD = $(LIBDIR)/libcurl.la
  49. lib503_DEPENDENCIES = $(LIBDIR)/libcurl.la
  50. lib504_SOURCES = lib504.c $(SUPPORTFILES)
  51. lib504_LDADD = $(LIBDIR)/libcurl.la
  52. lib504_DEPENDENCIES = $(LIBDIR)/libcurl.la
  53. lib505_SOURCES = lib505.c $(SUPPORTFILES)
  54. lib505_LDADD = $(LIBDIR)/libcurl.la
  55. lib505_DEPENDENCIES = $(LIBDIR)/libcurl.la
  56. lib506_SOURCES = lib506.c $(SUPPORTFILES)
  57. lib506_LDADD = $(LIBDIR)/libcurl.la
  58. lib506_DEPENDENCIES = $(LIBDIR)/libcurl.la
  59. lib507_SOURCES = lib507.c $(SUPPORTFILES)
  60. lib507_LDADD = $(LIBDIR)/libcurl.la
  61. lib507_DEPENDENCIES = $(LIBDIR)/libcurl.la
  62. lib508_SOURCES = lib508.c $(SUPPORTFILES)
  63. lib508_LDADD = $(LIBDIR)/libcurl.la
  64. lib508_DEPENDENCIES = $(LIBDIR)/libcurl.la
  65. lib509_SOURCES = lib509.c $(SUPPORTFILES)
  66. lib509_LDADD = $(LIBDIR)/libcurl.la
  67. lib509_DEPENDENCIES = $(LIBDIR)/libcurl.la
  68. lib510_SOURCES = lib510.c $(SUPPORTFILES)
  69. lib510_LDADD = $(LIBDIR)/libcurl.la
  70. lib510_DEPENDENCIES = $(LIBDIR)/libcurl.la