author | František Kučera <franta-hg@frantovo.cz> |
Fri, 15 May 2020 20:32:37 +0200 | |
changeset 59 | d6614ad97bed |
permissions | -rw-r--r-- |
1 all: amp.so
3 amp.so: amp.cpp
4 g++ -g -shared -fPIC amp.cpp -o amp.so
6 clean:
7 rm -f amp.so
9 info: amp.so
10 nm amp.so
11 ldd amp.so
12 file amp.so
14 install: amp.so
15 mkdir -p ~/.lv2/amp/
16 cp amp.so amp.ttl manifest.ttl ~/.lv2/amp/
17 lv2info http://lv2plug.in/plugins/eg-amp
19 uninstall:
20 rm -rf ~/.lv2/amp/