]> git.proxmox.com Git - pve-manager.git/blame - bin/init.d/Makefile
depend on systemd, add service files
[pve-manager.git] / bin / init.d / Makefile
CommitLineData
beb651ee
DM
1include ../../defines.mk
2
3all:
4
5SCRIPTS = \
b92400b6 6 pve-manager \
beb651ee 7 pvedaemon \
0c308a03 8 pveproxy \
33afb29b 9 spiceproxy \
6675a064
DM
10 pvestatd
11
12
13SERVICES= \
14 pvebanner.service \
15 pvenetcommit.service \
16 pvestatd.service \
17 pve-manager.service \
18 pvedaemon.service \
19 pveproxy.service \
20 spiceproxy.service
beb651ee
DM
21
22.PHONY: install
23install: ${SCRIPTS}
24 install -d ${INITDBINDIR}
25 install -m 0755 ${SCRIPTS} ${INITDBINDIR}
6675a064
DM
26 install -d ${SERVICEDIR}
27 install -m 0644 ${SERVICES} ${SERVICEDIR}
beb651ee
DM
28
29.PHONY: distclean
30distclean: clean
31
32.PHONY: clean
33clean:
34 rm -rf *~