Add 'php/phpxmlrpc/' from commit 'cd5dbb4a511e7a616a61187a5de1a611a9748cbd'
[plcapi.git] / wsdl / Makefile
1 # Build a WSDL spec of the API
2
3 all: plcapi.wsdl
4
5 plcapi.wsdl:
6         PYTHONPATH=../ python api2wsdl.py > $@
7
8 clean:
9         rm -f plcapi.wsdl
10
11 .PHONY: all clean