aboutsummaryrefslogtreecommitdiff
path: root/multi/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-03 15:03:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-03 15:03:14 +0000
commit75601f7924e90d9af9d649ed3eb069332ce33550 (patch)
treeebd98ba94343d1162953c42cce132f04b0ba837a /multi/Makefile.am
parent8b6314ccfbe48bba2cd560812dd1841425f3bd79 (diff)
multi interface example/test sources from the multi-dev branch
Diffstat (limited to 'multi/Makefile.am')
-rw-r--r--multi/Makefile.am21
1 files changed, 21 insertions, 0 deletions
diff --git a/multi/Makefile.am b/multi/Makefile.am
new file mode 100644
index 000000000..013c1dbd6
--- /dev/null
+++ b/multi/Makefile.am
@@ -0,0 +1,21 @@
+#
+# $Id$
+#
+
+INCLUDES = -I$(top_srcdir)/include
+
+bin_PROGRAMS = app single double
+
+app_SOURCES = app.c
+app_LDADD = ../lib/libcurl.la
+app_DEPENDENCIES = ../lib/libcurl.la
+
+single_SOURCES = single.c
+single_LDADD = ../lib/libcurl.la
+single_DEPENDENCIES = ../lib/libcurl.la
+
+double_SOURCES = double.c
+double_LDADD = ../lib/libcurl.la
+double_DEPENDENCIES = ../lib/libcurl.la
+
+AUTOMAKE_OPTIONS = foreign no-dependencies