Use nknobs instead of sliders

This commit is contained in:
Nick Lanham
2012-02-22 11:39:59 +01:00
parent 3da6249e55
commit 3030202fa4
2 changed files with 13 additions and 8 deletions

View File

@@ -2,10 +2,10 @@ BUNDLE = drmr.lv2
INSTALL_DIR = /usr/local/lib/lv2
CC=gcc
$(BUNDLE): manifest.ttl drmr.ttl drmr.so drmr_ui.so
$(BUNDLE): manifest.ttl drmr.ttl drmr.so drmr_ui.so knob.png
rm -rf $(BUNDLE)
mkdir $(BUNDLE)
cp manifest.ttl drmr.ttl drmr.so drmr_ui.so $(BUNDLE)
cp manifest.ttl drmr.ttl drmr.so drmr_ui.so knob.png $(BUNDLE)
drmr.so: drmr.c drmr_hydrogen.c
$(CC) -shared -Wall -fPIC -DPIC drmr.c drmr_hydrogen.c `pkg-config --cflags --libs lv2-plugin sndfile samplerate` -lexpat -lm -o drmr.so