diff -r 2f84ed5f3abf -r d6614ad97bed c++/lv2-demo-modul/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/c++/lv2-demo-modul/Makefile Fri May 15 20:32:37 2020 +0200 @@ -0,0 +1,20 @@ +all: amp.so + +amp.so: amp.cpp + g++ -g -shared -fPIC amp.cpp -o amp.so + +clean: + rm -f amp.so + +info: amp.so + nm amp.so + ldd amp.so + file amp.so + +install: amp.so + mkdir -p ~/.lv2/amp/ + cp amp.so amp.ttl manifest.ttl ~/.lv2/amp/ + lv2info http://lv2plug.in/plugins/eg-amp + +uninstall: + rm -rf ~/.lv2/amp/