diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-12-13 16:22:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-12-13 16:22:17 +0000 |
commit | 13722f536e5e7116f5ccbf625746366e74eda7a5 (patch) | |
tree | a01162363d52eaeed409906bf892c0ee75390219 | |
parent | 57f0e3292d7ae14e623c5d212ba7e5ad96f106e5 (diff) |
added 503
-rw-r--r-- | tests/libtest/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index 1ba02bf80..d06be2245 100644 --- a/tests/libtest/Makefile.am +++ b/tests/libtest/Makefile.am @@ -9,7 +9,7 @@ INCLUDES = -I$(top_srcdir)/include/curl LIBDIR = ../../lib # here are all tools used for running libcurl tests -bin_PROGRAMS = lib500 lib501 lib502 +bin_PROGRAMS = lib500 lib501 lib502 lib503 lib500_SOURCES = lib500.c first.c test.h lib500_LDADD = $(LIBDIR)/libcurl.la @@ -22,3 +22,7 @@ lib501_DEPENDENCIES = $(LIBDIR)/libcurl.la lib502_SOURCES = lib502.c first.c test.h lib502_LDADD = $(LIBDIR)/libcurl.la lib502_DEPENDENCIES = $(LIBDIR)/libcurl.la + +lib503_SOURCES = lib503.c first.c test.h +lib503_LDADD = $(LIBDIR)/libcurl.la +lib503_DEPENDENCIES = $(LIBDIR)/libcurl.la |