pve-manager/PVE/Service/Makefile
Thomas Lamprecht 147d67c495 makefile: convert to use simple parenthesis
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-05-29 18:24:00 +02:00

13 lines
282 B
Makefile

include ../../defines.mk
SOURCES=pvestatd.pm pveproxy.pm pvedaemon.pm spiceproxy.pm pvescheduler.pm
all:
.PHONY: install
install: $(SOURCES)
install -d -m 0755 $(PERLLIBDIR)/PVE/Service
for i in $(SOURCES); do install -D -m 0644 $$i $(PERLLIBDIR)/PVE/Service/$$i; done
clean: