diff options
author | snowdrop | 2004-01-05 10:42:14 +0000 |
---|---|---|
committer | snowdrop | 2004-01-05 10:42:14 +0000 |
commit | 49f500d8b52edea7a9d4ed81c16e83674e04e120 (patch) | |
tree | 98970398aa570187b8def6b80246d8468d9ee847 /examples/nanohttp | |
parent | cec0d2ad1ed2d07e8075a348e47238f5bcd54fe8 (diff) | |
download | csoap-49f500d8b52edea7a9d4ed81c16e83674e04e120.tar.gz csoap-49f500d8b52edea7a9d4ed81c16e83674e04e120.tar.bz2 |
startet post function
Diffstat (limited to 'examples/nanohttp')
-rw-r--r-- | examples/nanohttp/Makefile.am | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/examples/nanohttp/Makefile.am b/examples/nanohttp/Makefile.am index a5db7b3..221f469 100644 --- a/examples/nanohttp/Makefile.am +++ b/examples/nanohttp/Makefile.am @@ -1,13 +1,16 @@ -bin_PROGRAMS=httpget httpgetcb +bin_PROGRAMS=httpget httpgetcb httppost + +INCLUDES=-I$(top_srcdir)/ httpget_SOURCES=httpget.c -INCLUDES=-I$(top_srcdir)/ $(LIBXML_CFLAGS) -httpget_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ -$(LIBXML_LIBS) +httpget_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) httpgetcb_SOURCES=httpgetcb.c -httpgetcb_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ -$(LIBXML_LIBS) +httpgetcb_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) + +httppost_SOURCES=httppost.c +httppost_LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) + |