diff -r 000000000000 -r 5b261dcb0da8 Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/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/