summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGravatar snowdrop2004-01-21 12:28:20 +0000
committerGravatar snowdrop2004-01-21 12:28:20 +0000
commitcef76c0a0932ebf036f7334aa9c2d21410ccbfed (patch)
treea48c38e35e85fe9330252917f6bdca68e2ed4693 /examples
parenta8aab76b1d8b8aad4a5ef5351cd1df545a8576ba (diff)
downloadcsoap-cef76c0a0932ebf036f7334aa9c2d21410ccbfed.tar.gz
csoap-cef76c0a0932ebf036f7334aa9c2d21410ccbfed.tar.bz2
added server functionality
Diffstat (limited to 'examples')
-rw-r--r--examples/nanohttp/Makefile.am10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/nanohttp/Makefile.am b/examples/nanohttp/Makefile.am
index 2901d25..dde2691 100644
--- a/examples/nanohttp/Makefile.am
+++ b/examples/nanohttp/Makefile.am
@@ -1,8 +1,8 @@
-bin_PROGRAMS=httpget httpgetcb httppost
+bin_PROGRAMS=httpget httpgetcb httppost httpcpost helloserver
INCLUDES=-I$(top_srcdir)/
LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \
- $(LIBSOCKET) $(LIBNSL)
+ $(LIBSOCKET) $(LIBNSL) -lpthread
httpget_SOURCES=httpget.c
httpget_LDFLAGS=$(LDFLAGS)
@@ -13,6 +13,12 @@ httpgetcb_LDFLAGS=$(LDFLAGS)
httppost_SOURCES=httppost.c
httppost_LDFLAGS=$(LDFLAGS)
+httpcpost_SOURCES=httpcpost.c
+httpcpost_LDFLAGS=$(LDFLAGS)
+
+helloserver_SOURCES=helloserver.c
+helloserver_LDFLAGS=$(LDFLAGS)
+