mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 10:35:05 -05:00
21 lines
398 B
Makefile
21 lines
398 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
INCLUDES = -I$(top_srcdir)/include
|
|
|
|
LIBDIR = ../../lib
|
|
|
|
# here are all tools used for running libcurl tests
|
|
bin_PROGRAMS = lib500 lib501
|
|
|
|
lib500_SOURCES = lib500.c
|
|
lib500_LDADD = $(LIBDIR)/libcurl.la
|
|
lib500_DEPENDENCIES = $(LIBDIR)/libcurl.la
|
|
|
|
lib501_SOURCES = lib501.c
|
|
lib501_LDADD = $(LIBDIR)/libcurl.la
|
|
lib501_DEPENDENCIES = $(LIBDIR)/libcurl.la
|