1 # This Makefile.am is in the public domain 2 if HAVE_CURL 3 curltests = testcurl 4 if HAVE_ZZUF 5 if HAVE_SOCAT 6 zzuftests = testzzuf 7 endif 8 endif 9 endif 10 if ENABLE_SPDY 11 if HAVE_OPENSSL 12 microspdy = microspdy 13 if HAVE_CURL 14 microspdy += spdy2http 15 endif 16 #if HAVE_SPDYLAY 17 microspdy += testspdy 18 #endif 19 endif 20 endif 21 22 SUBDIRS = include platform microhttpd $(microspdy) $(curltests) $(zzuftests) . 23 24 if BUILD_EXAMPLES 25 SUBDIRS += examples 26 endif 27 28 EXTRA_DIST = \ 29 datadir/cert-and-key.pem \ 30 datadir/cert-and-key-for-wireshark.pem \ 31 datadir/spdy-draft.txt 32