First approximation of WSDL generator for PLCAPI
[plcapi.git] / wsdl / Makefile
diff --git a/wsdl/Makefile b/wsdl/Makefile
new file mode 100644 (file)
index 0000000..da910d7
--- /dev/null
@@ -0,0 +1,11 @@
+# Build a WSDL spec of the API
+
+all: plc_api.wsdl
+
+plc_api.wsdl:
+       ./api2wsdl.py -o plc_api.wsdl
+
+clean:
+       rm -f plc_api.wsdl
+
+.PHONY: all clean