1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/c++/lv2-demo-modul/Makefile Fri May 15 20:32:37 2020 +0200
1.3 @@ -0,0 +1,20 @@
1.4 +all: amp.so
1.5 +
1.6 +amp.so: amp.cpp
1.7 + g++ -g -shared -fPIC amp.cpp -o amp.so
1.8 +
1.9 +clean:
1.10 + rm -f amp.so
1.11 +
1.12 +info: amp.so
1.13 + nm amp.so
1.14 + ldd amp.so
1.15 + file amp.so
1.16 +
1.17 +install: amp.so
1.18 + mkdir -p ~/.lv2/amp/
1.19 + cp amp.so amp.ttl manifest.ttl ~/.lv2/amp/
1.20 + lv2info http://lv2plug.in/plugins/eg-amp
1.21 +
1.22 +uninstall:
1.23 + rm -rf ~/.lv2/amp/