aboutsummaryrefslogtreecommitdiff
path: root/samples/quotex/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'samples/quotex/Makefile')
-rw-r--r--samples/quotex/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/samples/quotex/Makefile b/samples/quotex/Makefile
new file mode 100644
index 0000000..1548c9f
--- /dev/null
+++ b/samples/quotex/Makefile
@@ -0,0 +1,20 @@
+GSOAP=../../soapcpp2
+SOAPH=../../stdsoap2.h
+SOAPC=../../stdsoap2.c
+SOAPCPP=../../stdsoap2.cpp
+CC=gcc
+CPP=g++
+LIBS=
+COFLAGS=-O2
+CWFLAGS=-Wall
+CIFLAGS=-I../..
+CMFLAGS=
+CFLAGS= $(CWFLAGS) $(COFLAGS) $(CIFLAGS) $(CMFLAGS)
+all: quotex
+quotex: quotex.h quotex.cpp $(SOAPH) $(SOAPCPP)
+ $(GSOAP) quotex.h
+ $(CPP) $(CFLAGS) -o quotex quotex.cpp soapC.cpp soapClient.cpp soapServer.cpp $(SOAPCPP) $(LIBS)
+clean:
+ rm -f *.o soapH.h soapStub.h soapC.cpp soapC.c soapClient.cpp soapClient.c soapServer.cpp soapServer.c soap*Proxy.h
+distclean:
+ rm -f *.o *.wsdl *.xsd *.xml *.nsmap *.log soapH.h soapStub.h soapC.cpp soapC.c soapClient.cpp soapClient.c soapServer.cpp soapServer.c soap*Proxy.h quotex