diff options
author | snowdrop | 2004-01-21 12:28:20 +0000 |
---|---|---|
committer | snowdrop | 2004-01-21 12:28:20 +0000 |
commit | cef76c0a0932ebf036f7334aa9c2d21410ccbfed (patch) | |
tree | a48c38e35e85fe9330252917f6bdca68e2ed4693 /examples/nanohttp | |
parent | a8aab76b1d8b8aad4a5ef5351cd1df545a8576ba (diff) | |
download | csoap-cef76c0a0932ebf036f7334aa9c2d21410ccbfed.tar.gz csoap-cef76c0a0932ebf036f7334aa9c2d21410ccbfed.tar.bz2 |
added server functionality
Diffstat (limited to 'examples/nanohttp')
-rw-r--r-- | examples/nanohttp/Makefile.am | 10 |
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) + |