blob: 4673d0d8416d5e928a5cb78865221399d43e75b0 (
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
|
# This Makefile.am is in the public domain
SUBDIRS = include microhttpd .
if RUN_LIBCURL_TESTS
SUBDIRS += testcurl
if RUN_ZZUF_TESTS
SUBDIRS += testzzuf
endif
endif
# Finally (last!) also build experimental lib...
if HAVE_EXPERIMENTAL
SUBDIRS += microhttpd_ws lib
endif
if BUILD_EXAMPLES
SUBDIRS += examples
endif
if BUILD_TOOLS
SUBDIRS += tools
endif
EXTRA_DIST = \
datadir/cert-and-key.pem \
datadir/cert-and-key-for-wireshark.pem
.NOTPARALLEL:
|