diff options
Diffstat (limited to 'examples/csoap/Makefile.am')
-rw-r--r-- | examples/csoap/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/csoap/Makefile.am b/examples/csoap/Makefile.am new file mode 100644 index 0000000..bb62213 --- /dev/null +++ b/examples/csoap/Makefile.am @@ -0,0 +1,17 @@ +bin_PROGRAMS=simpleclient simpleserver + +INCLUDES=-I$(top_srcdir)/ $(LIBXML_CFLAGS) +LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ + $(LIBSOCKET) $(LIBNSL) -lpthread\ + -L$(top_builddir)/libcsoap/ -lcsoap-$(GENERIC_API_VERSION) \ + $(LIBXML_LIBS) + +simpleclient_SOURCES=simpleclient.c +simpleclient_LDFLAGS=$(LDFLAGS) + +simpleserver_SOURCES=simpleserver.c +simpleserver_LDFLAGS=$(LDFLAGS) + + + + |