From 7196d784d330df3030b782e097799629f4b80a61 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 12 Dec 2002 12:11:16 +0000 Subject: The first ever attempts to do pure libcurl test cases --- tests/libtest/Makefile.am | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/libtest/Makefile.am (limited to 'tests/libtest/Makefile.am') diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am new file mode 100644 index 000000000..d172b2abd --- /dev/null +++ b/tests/libtest/Makefile.am @@ -0,0 +1,20 @@ +# +# $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 -- cgit v1.2.3