diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:19:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 14:19:18 +0000 |
commit | 4035b1bfb1e5843a539a8b624d21952b756974d1 (patch) | |
tree | f1e9cd5bf548cbc57ff2fddfb2b4aa9ae95587e2 /src/VBox/Main/webservice/Makefile.webtest | |
parent | Initial commit. (diff) | |
download | virtualbox-4035b1bfb1e5843a539a8b624d21952b756974d1.tar.xz virtualbox-4035b1bfb1e5843a539a8b624d21952b756974d1.zip |
Adding upstream version 6.1.22-dfsg.upstream/6.1.22-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/Main/webservice/Makefile.webtest')
-rw-r--r-- | src/VBox/Main/webservice/Makefile.webtest | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/VBox/Main/webservice/Makefile.webtest b/src/VBox/Main/webservice/Makefile.webtest new file mode 100644 index 00000000..b3566abe --- /dev/null +++ b/src/VBox/Main/webservice/Makefile.webtest @@ -0,0 +1,84 @@ +# $Id: Makefile.webtest $ +## @files +# ??? +# + +# +# Copyright (C) 2016-2020 Oracle Corporation +# +# This file is part of VirtualBox Open Source Edition (OSE), as +# available from http://www.virtualbox.org. This file is free software; +# you can redistribute it and/or modify it under the terms of the GNU +# General Public License (GPL) as published by the Free Software +# Foundation, in version 2 as it comes in the "COPYING" file of the +# VirtualBox OSE distribution. VirtualBox OSE is distributed in the +# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. +# + +XSLTPROC = xsltproc +ifeq ($(PATH_GSOAP),) + PATH_GSOAP = $(lastword $(sort $(wildcard $(KBUILD_DEVTOOLS)/common/gsoap/*))) +endif +PATH_GSOAP_BIN := $(strip $(PATH_GSOAP)) +ifeq ($(PATH_GSOAP_BIN),) + PATH_GSOAP_BIN = /usr/bin +endif +SOAPCPP2 = $(PATH_GSOAP_BIN)/soapcpp2 + +ifneq ($(MAKECMDGOALS),clean) + ifeq ($(wildcard $(PATH_GSOAP)/stdsoap2.cpp),) + $(error Fix PATH_GSOAP!) + endif +endif + +WEBSRVWSDL2GSOAPH = ../../../xsl/websrv-wsdl2gsoapH.xsl +WEBSRVNSMAPXSL = ../../../xsl/websrv-nsmap.xsl +VBOXWEBIDLSRC = ../../../../VirtualBox.xidl +VBOXWEBWSDL = ../../../vboxweb.wsdl +SPLITSOAPCCPP = ../../../tools/split-soapC.cpp +SOAPCCPP = $(foreach num,1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20,soapC-$(num).cpp) +SOAPCO = $(patsubst %.cpp,%.o,$(SOAPCCPP)) + +webtest: webtest.o soapClient.o $(SOAPCO) stdsoap2.o + $(CXX) -O2 -o $@ $^ -lssl -lcrypto + +webtest.o: webtest.cpp soapC.cpp vboxwebsrv.nsmap + $(CXX) -O2 -DWITH_OPENSSL -c -o $@ $< -I$(PATH_GSOAP) + +soapClient.o: soapC.cpp + $(CXX) -O2 -c -o $@ soapClient.cpp -I$(PATH_GSOAP) + +$(SOAPCO): soapC-%.o: soapC-%.cpp + $(CXX) -O0 -c -o $@ $< -I$(PATH_GSOAP) + +soapC.cpp: gsoapH_from_xslt.h + $(SOAPCPP2) -x -L -2 -w -I$(PATH_GSOAP)/import $^ + +stdsoap2.o: $(PATH_GSOAP)/stdsoap2.cpp + $(CXX) -O2 -DWITH_OPENSSL -c -o $@ $< + +gsoapH_from_xslt.h: + $(XSLTPROC) -o $@ $(WEBSRVWSDL2GSOAPH) $(VBOXWEBWSDL) + +vboxwebsrv.nsmap: + $(XSLTPROC) -o $@ $(WEBSRVNSMAPXSL) $(VBOXWEBIDLSRC) + +$(subst soapC,%,$(SOAPCCPP)): split-soapC %.cpp + ./split-soapC soapC.cpp . 20 + +split-soapC: $(SPLITSOAPCCPP) + $(CXX) -O2 -o $@ $< + +.PHONY: clean +clean: + rm -f gsoapH_from_xslt.h + rm -f soapStub.h soapServer.cpp soapC.cpp soapClient.cpp + rm -f soapH.h soapvboxBindingObject.h soapvboxBindingProxy.h + rm -f vboxBinding.nsmap + rm -f vboxwebsrv.nsmap + rm -f split-soapC + rm -f $(SOAPCCPP) $(SOAPCO) + rm -f soapClient.o stdsoap2.o + rm -f webtest.o webtest + rm -f soapC-split-done + |