aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-01-09 20:04:06 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-01-09 20:04:06 +0300
commita8b2cce86981b62d139a947adde4194e4cb4fe39 (patch)
treedfc56fef547cb1f04cb0f0d72ce1ba13b23b7df4
parentbf89bd95f8d4401ddaabdb59023175e66bdbd80f (diff)
downloadlibmicrohttpd-a8b2cce86981b62d139a947adde4194e4cb4fe39.tar.gz
libmicrohttpd-a8b2cce86981b62d139a947adde4194e4cb4fe39.zip
doc/examples/Makefile: fixed missing file
-rw-r--r--doc/examples/Makefile.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am
index 1dc1b1d1..cdb787d9 100644
--- a/doc/examples/Makefile.am
+++ b/doc/examples/Makefile.am
@@ -36,6 +36,10 @@ if HAVE_W32
36AM_CPPFLAGS += -DWINDOWS 36AM_CPPFLAGS += -DWINDOWS
37endif 37endif
38 38
39if HAVE_EXPERIMENTAL
40noinst_PROGRAMS += websocket
41endif
42
39basicauthentication_SOURCES = \ 43basicauthentication_SOURCES = \
40 basicauthentication.c 44 basicauthentication.c
41basicauthentication_LDADD = \ 45basicauthentication_LDADD = \
@@ -76,3 +80,8 @@ largepost_SOURCES = \
76largepost_LDADD = \ 80largepost_LDADD = \
77 $(top_builddir)/src/microhttpd/libmicrohttpd.la 81 $(top_builddir)/src/microhttpd/libmicrohttpd.la
78 82
83websocket_SOURCES = \
84 websocket.c
85websocket_LDADD = \
86 $(top_builddir)/src/microhttpd/libmicrohttpd.la \
87 $(top_builddir)/src/microhttpd_ws/libmicrohttpd_ws.la