diff options
author | rekado <rekado@elephly.net> | 2013-01-26 15:29:27 +0800 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2013-01-26 15:29:30 +0800 |
commit | 90b2b353382d3b2ea1235d2894052782f8e890d0 (patch) | |
tree | c02c387a02f816fb6ce28aec0119ec370fd34700 /src/Makefile | |
parent | 821e50aa0c2dba2fcfa46758c634585f6d70c509 (diff) |
switch to LV2 Toolkit (lvtoolkit.org)
lv2-c++-tools is apparently no longer maintained.
lvtk is a fork of lv2-c++-tools.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 3fea3ef..ece96d5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -11,10 +11,10 @@ $(BUNDLE): manifest.ttl mdaPiano.ttl mdaPiano.so presets data/*.raw cp -r $^ $(BUNDLE) mdaPiano.so: $(SOURCES) mdaPiano.peg - $(CXX) $(FLAGS) -shared $(SOURCES) `pkg-config --cflags --libs lv2-plugin` -o $@ + $(CXX) $(FLAGS) -shared $(SOURCES) `pkg-config --cflags --libs lvtk-plugin-1` -o $@ mdaPiano.peg: mdaPiano.ttl - lv2peg $^ mdaPiano.peg + ttl2c $^ mdaPiano.peg install: $(BUNDLE) mkdir -p $(INSTALL_DIR) |