diff options
-rw-r--r-- | src/Makefile | 8 | ||||
-rw-r--r-- | src/mdaPiano.h | 2 | ||||
-rw-r--r-- | src/mdaPianoVoice.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile index e9901a4..173db4f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,11 +17,11 @@ $(BUNDLE): manifest.ttl $(TYPE).ttl $(TYPE).so $(TYPE)/presets $(TYPE)/data/*.ra mkdir $(BUNDLE) cp -r $^ $(BUNDLE) -$(TYPE).so: $(SOURCES) $(TYPE).peg +$(TYPE).so: $(SOURCES) ports.peg $(CXX) $(FLAGS) -shared $(SOURCES) `pkg-config --cflags --libs lvtk-plugin-1` -o $@ -$(TYPE).peg: $(TYPE).ttl - ttl2c $^ $(TYPE).peg +ports.peg: $(TYPE).ttl + ttl2c $^ ports.peg install: $(BUNDLE) mkdir -p $(INSTALL_DIR) @@ -29,4 +29,4 @@ install: $(BUNDLE) cp -R $(BUNDLE) $(INSTALL_DIR) clean: - rm -rf $(BUNDLE) $(addprefix $(TYPE),.so .peg) + rm -rf $(BUNDLE) $(TYPE).so ports.peg diff --git a/src/mdaPiano.h b/src/mdaPiano.h index 5c4475d..de7250d 100644 --- a/src/mdaPiano.h +++ b/src/mdaPiano.h @@ -3,7 +3,7 @@ //See associated .cpp file for copyright and other info #include "mdaPianoVoice.h" -#include "mdaPiano.peg" +#include "ports.peg" #pragma GCC system_header #include <lvtk/synth.hpp> diff --git a/src/mdaPianoVoice.h b/src/mdaPianoVoice.h index 16cc738..34d7018 100644 --- a/src/mdaPianoVoice.h +++ b/src/mdaPianoVoice.h @@ -2,7 +2,7 @@ #define MDA_PIANO_VOICE_H #include "mdaPianoCommon.h" -#include "mdaPiano.peg" +#include "ports.peg" #pragma GCC system_header #include <lvtk/synth.hpp> |