mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 03:25:04 -05:00
206039cb76
inclusion
83 lines
2.9 KiB
Makefile
83 lines
2.9 KiB
Makefile
#############################################################################
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# In order to be useful for every potential user, curl and libcurl are
|
|
# dual-licensed under the MPL and the MIT/X-derivate licenses.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the MPL or the MIT/X-derivate
|
|
# licenses. You may pick one of these licenses.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# $Id$
|
|
#############################################################################
|
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
# $(top_srcdir)/include/curl is for the main curl include files, to make it
|
|
# easier to include this specific set of curl headers, and NOT the ones
|
|
# possibly already installed in the system.
|
|
# -I$(top_srcdir)/lib is for the setup.h file, included by test.h
|
|
# -I$(top_builddir)/lib is for the config.h file, possibly included by the
|
|
# setup.h file
|
|
INCLUDES = -I$(top_srcdir)/include/curl \
|
|
-I$(top_srcdir)/lib \
|
|
-I$(top_builddir)/lib
|
|
|
|
LIBDIR = $(top_builddir)/lib
|
|
|
|
SUPPORTFILES = first.c test.h
|
|
|
|
# here are all tools used for running libcurl tests
|
|
noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 lib507 \
|
|
lib508 lib509
|
|
|
|
lib500_SOURCES = lib500.c $(SUPPORTFILES)
|
|
lib500_LDADD = $(LIBDIR)/libcurl.la
|
|
lib500_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib501_SOURCES = lib501.c $(SUPPORTFILES)
|
|
lib501_LDADD = $(LIBDIR)/libcurl.la
|
|
lib501_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib502_SOURCES = lib502.c $(SUPPORTFILES)
|
|
lib502_LDADD = $(LIBDIR)/libcurl.la
|
|
lib502_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib503_SOURCES = lib503.c $(SUPPORTFILES)
|
|
lib503_LDADD = $(LIBDIR)/libcurl.la
|
|
lib503_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib504_SOURCES = lib504.c $(SUPPORTFILES)
|
|
lib504_LDADD = $(LIBDIR)/libcurl.la
|
|
lib504_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib505_SOURCES = lib505.c $(SUPPORTFILES)
|
|
lib505_LDADD = $(LIBDIR)/libcurl.la
|
|
lib505_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib506_SOURCES = lib506.c $(SUPPORTFILES)
|
|
lib506_LDADD = $(LIBDIR)/libcurl.la
|
|
lib506_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib507_SOURCES = lib507.c $(SUPPORTFILES)
|
|
lib507_LDADD = $(LIBDIR)/libcurl.la
|
|
lib507_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib508_SOURCES = lib508.c $(SUPPORTFILES)
|
|
lib508_LDADD = $(LIBDIR)/libcurl.la
|
|
lib508_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib509_SOURCES = lib509.c $(SUPPORTFILES)
|
|
lib509_LDADD = $(LIBDIR)/libcurl.la
|
|
lib509_DEPENDENCIES = $(LIBDIR)/libcurl.la
|