diff options
Diffstat (limited to 'examples/csoap')
-rw-r--r-- | examples/csoap/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/csoap/Makefile.am b/examples/csoap/Makefile.am index a1a24d0..b129cff 100644 --- a/examples/csoap/Makefile.am +++ b/examples/csoap/Makefile.am @@ -1,5 +1,7 @@ noinst_PROGRAMS=simpleclient simpleserver echoattachments-client echoattachments-server +bin_PROGRAMS=soapclient + INCLUDES=-I$(top_srcdir)/ $(LIBXML_CFLAGS) csoap_LDFLAG=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ $(LIBSOCKET) $(LIBNSL) -lpthread\ @@ -18,6 +20,9 @@ echoattachments_server_LDFLAGS=$(csoap_LDFLAG) echoattachments_client_SOURCES=echoattachments-client.c echoattachments_client_LDFLAGS=$(csoap_LDFLAG) +soapclient_SOURCES=soapclient.c +soapclient_LDFLAGS=$(csoap_LDFLAG) + |