blob: 33f9c970834325082d34ef8323c181f55ec19ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
PKGS := vhba-module-20210418 libmirage-3.2.5 cdemu-daemon-3.2.5 cdemu-client-3.2.5
TARS := $(PKGS:%=%.tar.xz)
.PHONY: install
install: install-cdemu-daemon-3.2.5 install-cdemu-client-3.2.5 install-vhba-module
.PHONY: install-cdemu-client-3.2.5
install-cdemu-client-3.2.5: cdemu-client-3.2.5/install_manifest.txt
.PHONY: install-cdemu-daemon-3.2.5
install-cdemu-daemon-3.2.5: cdemu-daemon-3.2.5/install_manifest.txt install-libmirage-3.2.5
sudo install -D -m 644 cdemu-daemon-3.2.5/service-example/cdemu-daemon.service /usr/local/lib/systemd/user/cdemu-daemon.service
sudo sed -i 's#/usr/#/usr/local/#' /usr/local/lib/systemd/user/cdemu-daemon.service
sudo install -D -m 644 cdemu-daemon-3.2.5/service-example/net.sf.cdemu.CDEmuDaemon.service /usr/local/share/dbus-1/services/net.sf.cdemu.CDEmuDaemon.service
.PHONY: install-libmirage-3.2.5
install-libmirage-3.2.5: libmirage-3.2.5/install_manifest.txt
sudo ldconfig
.PHONY: install-vhba-module
install-vhba-module: vhba-module-20210418/vhba.ko
-sudo insmod vhba-module-20210418/vhba.ko
sudo chown $$USER /dev/vhba_ctl
.PHONY: uninstall
uninstall: uninstall-cdemu-daemon-3.2.5 uninstall-cdemu-client-3.2.5 uninstall-libmirage-3.2.5
sudo rm -rf /usr/local/lib/systemd/user/cdemu-daemon.service /usr/local/share/dbus-1/services/net.sf.cdemu.CDEmuDaemon.service
-sudo rmmod vhba
.PHONY: uninstall-%
uninstall-%: %/install_manifest.txt
sort $< | while read line; do \
sudo rm -f $$line; \
sudo rm -d `dirname $$line` 2>&1 && echo success; \
done | uniq | tac | sed '/success/I,+1 d'
rm -f $<
.PHONY: clean
clean:
rm -f $(TARS)
rm -rf $(PKGS)
cdemu-client-3.2.5/install_manifest.txt: | cdemu-client-3.2.5/src/cdemu
@echo "Don't worry there is an uninstall target"
sudo $(MAKE) -C $(@D) install
cdemu-client-3.2.5/src/cdemu: | cdemu-client-3.2.5/Makefile
$(MAKE) -C $(@D)
cdemu-daemon-3.2.5/install_manifest.txt: | cdemu-daemon-3.2.5/Makefile cdemu-daemon-3.2.5/cdemu-daemon
@echo "Don't worry there is an uninstall target"
sudo $(MAKE) -C $(@D) install
cdemu-daemon-3.2.5/cdemu-daemon: | cdemu-daemon-3.2.5/Makefile
$(MAKE) -C $(@D)
cdemu-daemon-3.2.5/Makefile: | cdemu-daemon-3.2.5 libmirage-3.2.5/install_manifest.txt
cd $(@D) && cmake .
libmirage-3.2.5/install_manifest.txt: libmirage-3.2.5/libmirage.so
@echo "Please enter your password. Don't worry there is an uninstall target"
sudo $(MAKE) -C $(@D) install
libmirage-3.2.5/libmirage.so: | libmirage-3.2.5/Makefile
$(MAKE) -C $(@D)
%/Makefile: | %
cd $(@D) && cmake .
vhba-module-20210418/vhba.ko: | vhba-module-20210418
cd $(@D) && $(MAKE)
$(PKGS): %: %.tar.xz
tar -xvf $<
%.tar.xz:
wget -q http://downloads.sourceforge.net/cdemu/$@
|