0
|
1 ####### This is the input file for automake, which will generate Makefile.in ##########
|
|
2
|
|
3
|
|
4 ## not a GNU package. You can remove this line, if
|
|
5 ## you have all needed files, that a GNU package needs
|
|
6 AUTOMAKE_OPTIONS = foreign 1.4
|
|
7
|
|
8 # INCLUDES=-I$(top_srcdir)/gsoap
|
|
9 # AM_LDFLAGS=$(INCLUDES) -I$(srcdir) -L$(srcdir)
|
|
10 AM_LDFLAGS=-L$(srcdir) -I$(top_srcdir)/gsoap -I$(top_srcdir)/gsoap/plugin
|
|
11 AM_CPPFLAGS=-I$(top_srcdir)/gsoap -I$(top_srcdir)/gsoap/plugin
|
|
12 SOAP=$(top_builddir)/gsoap/src/soapcpp2
|
|
13 SOAP_CPP_LIB=$(top_builddir)/gsoap/$(WSDL2H_SOAP_CPP_LIB)
|
|
14 SOAP_CPP_SRC=wsdlC.cpp
|
|
15 SOAPHEADER=$(srcdir)/wsdl.h
|
|
16 SOAP_FLAGS=-SC -pwsdl -I$(srcdir) -I$(top_srcdir)/gsoap/import
|
|
17 BUILT_SOURCES=$(SOAP_CPP_SRC)
|
|
18 # WSDL2H_EXTRA_FLAGS=-DWITH_OPENSSL -DWITH_GZIP # defined in configure.in
|
|
19 # WSDL2H_EXTRA_LIBS=-lssl -lcrypto -lz # defined in configure.in
|
|
20
|
|
21 $(SOAP_CPP_SRC) : $(SOAPHEADER)
|
|
22 $(SOAP) $(SOAP_FLAGS) $(SOAPHEADER)
|
|
23
|
|
24 #LIBS=
|
|
25
|
|
26 bin_PROGRAMS=wsdl2h
|
|
27
|
|
28 wsdl2h_CFLAGS=$(C_DEBUG_FLAGS) $(WSDL2H_EXTRA_FLAGS)
|
|
29 wsdl2h_CXXFLAGS=$(C_DEBUG_FLAGS) $(WSDL2H_EXTRA_FLAGS)
|
|
30 wsdl2h_CPPFLAGS=$(AM_CPPFLAGS) $(SOAPCPP2_NONAMESPACES) -D$(platform)
|
|
31 wsdl2h_SOURCES=wsdl2h.cpp wsdl.cpp schema.cpp types.cpp service.cpp soap.cpp mime.cpp wsp.cpp $(SOAP_CPP_SRC)
|
|
32 wsdl2h_LDADD=$(SOAP_CPP_LIB) $(WSDL2H_EXTRA_LIBS)
|
|
33
|
|
34 CLEANFILES= *~ *C.cpp *H.h *Stub.h *.nsmap
|