summaryrefslogtreecommitdiff
path: root/src/PVE/API2/Network/SDN/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/PVE/API2/Network/SDN/Makefile')
-rw-r--r--src/PVE/API2/Network/SDN/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/PVE/API2/Network/SDN/Makefile b/src/PVE/API2/Network/SDN/Makefile
new file mode 100644
index 0000000..3683fa4
--- /dev/null
+++ b/src/PVE/API2/Network/SDN/Makefile
@@ -0,0 +1,10 @@
+SOURCES=Vnets.pm Zones.pm Controllers.pm Subnets.pm Ipams.pm Dns.pm
+
+
+PERL5DIR=${DESTDIR}/usr/share/perl5
+
+.PHONY: install
+install:
+ for i in ${SOURCES}; do install -D -m 0644 $$i ${PERL5DIR}/PVE/API2/Network/SDN/$$i; done
+ make -C Zones install
+