mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-20 17:37:35 +00:00
13 lines
282 B
Makefile
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:
|