mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-05 02:40:04 +00:00
13 lines
266 B
Makefile
13 lines
266 B
Makefile
include ../../defines.mk
|
|
|
|
SOURCES=pvestatd.pm pveproxy.pm pvedaemon.pm spiceproxy.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:
|