blob: 273a99eee420ad79ed5c11f9661295edcea71782 (
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
|
PKGS := vhba-module-20210418 libmirage-3.2.5 cdemu-daemon-3.2.5
TARS := $(PKGS:%=%.tar.xz)
.PHONY: install
install: install-cdemu-daemon-3.2.5 install-vhba-module
.PHONY: install-cdemu-daemon-3.2.5
install-cdemu-daemon-3.2.5: cdemu-daemon-3.2.5/install_manifest.txt
.PHONY: install-libmirage-3.2.5
install-libmirage-3.2.5: libmirage-3.2.5/install_manifest.txt
.PHONY: install-vhba-module
install-vhba-module: vhba-module-20210418/vhba.ko
-sudo insmod vhba-module-20210418/vhba.ko
.PHONY: uninstall
uninstall: uninstall-cdemu-daemon-3.2.5 uninstall-libmirage-3.2.5
-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-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: | install-libmirage-3.2.5 cdemu-daemon-3.2.5
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)
libmirage-3.2.5/Makefile: | libmirage-3.2.5
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/$@
|