mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-06 18:50:36 +00:00
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
include ../../defines.mk
|
|
|
|
all:
|
|
|
|
SCRIPTS = \
|
|
pve-manager \
|
|
pvedaemon \
|
|
pveproxy \
|
|
spiceproxy \
|
|
pvestatd
|
|
|
|
|
|
SERVICES= \
|
|
pvebanner.service \
|
|
pvenetcommit.service \
|
|
pvestatd.service \
|
|
pve-manager.service \
|
|
pvedaemon.service \
|
|
pveproxy.service \
|
|
spiceproxy.service
|
|
|
|
.PHONY: install
|
|
install: ${SCRIPTS}
|
|
install -d ${INITDBINDIR}
|
|
install -m 0755 ${SCRIPTS} ${INITDBINDIR}
|
|
install -d ${SERVICEDIR}
|
|
install -m 0644 ${SERVICES} ${SERVICEDIR}
|
|
install -d ${SERVICEDIR}/ceph-mon@.service.d
|
|
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-mon@.service.d
|
|
install -d ${SERVICEDIR}/ceph-osd@.service.d
|
|
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-osd@.service.d
|
|
install -d ${SERVICEDIR}/ceph-disk@.service.d
|
|
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-disk@.service.d
|
|
install -d ${SERVICEDIR}/ceph-mds@.service.d
|
|
install -m 0644 ceph-after-pve-cluster.conf ${SERVICEDIR}/ceph-mds@.service.d
|
|
install -d ${DESTDIR}/usr/share/doc/{$PACKAGE}/examples/
|
|
install -m 0644 ceph.service ${DESTDIR}/usr/share/doc/${PACKAGE}/examples/ceph.service
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|