blob: c86ed072057ca819c867d1dbc4d344528da8f174 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
SUBDIRS = .
INCLUDES = -I$(top_srcdir)/src/include
lib_LTLIBRARIES = \
libmicrohttpd.la
libmicrohttpd_la_LDFLAGS = \
-export-dynamic -version-info 0:0:0
# libmicrohttpd_la_LIBADD = \
# -lm
libmicrohttpd_la_SOURCES = \
daemon.c \
internal.c internal.h \
response.c response.h \
session.c session.h
# example programs
noinst_PROGRAMS = minimal_example
minimal_example_SOURCES = \
minimal_example.c
minimal_example_LDADD = \
$(top_builddir)/src/daemon/libmicrohttpd.la
# No curl, no testcases
if HAVE_CURL
check_PROGRAMS = \
daemontest \
daemontest1
TESTS = $(check_PROGRAMS)
daemontest_SOURCES = \
daemontest.c
daemontest_LDADD = \
$(top_builddir)/src/daemon/libmicrohttpd.la
daemontest1_SOURCES = \
daemontest1.c
daemontest1_LDADD = \
$(top_builddir)/src/daemon/libmicrohttpd.la \
@LIBCURL@
endif
|