diff options
Diffstat (limited to 'exp/cdemu/Makefile')
-rw-r--r-- | exp/cdemu/Makefile | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/exp/cdemu/Makefile b/exp/cdemu/Makefile new file mode 100644 index 0000000..273a99e --- /dev/null +++ b/exp/cdemu/Makefile @@ -0,0 +1,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/$@ + |