First approximation of WSDL generator for PLCAPI
[plcapi.git] / wsdl / Makefile
1 # Build a WSDL spec of the API
2
3 all: plc_api.wsdl
4
5 plc_api.wsdl:
6         ./api2wsdl.py -o plc_api.wsdl
7
8 clean:
9         rm -f plc_api.wsdl
10
11 .PHONY: all clean