diff options
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/Makefile.am | 17 | ||||
-rw-r--r-- | src/engine/machina/Makefile.am | 1 |
2 files changed, 10 insertions, 8 deletions
diff --git a/src/engine/Makefile.am b/src/engine/Makefile.am index 20f02e9..879c00d 100644 --- a/src/engine/Makefile.am +++ b/src/engine/Makefile.am @@ -6,19 +6,20 @@ libmachina_la_CXXFLAGS = @REDLANDMM_CFLAGS@ @RAUL_CFLAGS@ @JACK_CFLAGS@ @GLIBMM_ libmachina_la_LIBADD = @REDLANDMM_LIBS@ @RAUL_LIBS@ @JACK_LIBS@ @GLIBMM_LIBS@ libmachina_la_SOURCES = \ - Node.cpp \ - Edge.cpp \ Action.cpp \ - Machine.cpp \ - Mutation.cpp \ - Loader.cpp \ - MidiAction.cpp \ ActionFactory.cpp \ - SMFDriver.cpp \ + Edge.cpp \ Engine.cpp \ LearnRequest.cpp \ + Loader.cpp \ + Machine.cpp \ + MachineBuilder.cpp \ + MidiAction.cpp \ + Mutation.cpp \ + Node.cpp \ + Problem.cpp \ Recorder.cpp \ - MachineBuilder.cpp + SMFDriver.cpp if WITH_JACK libmachina_la_SOURCES += JackDriver.cpp jack_compat.h diff --git a/src/engine/machina/Makefile.am b/src/engine/machina/Makefile.am index f8666e1..f37974c 100644 --- a/src/engine/machina/Makefile.am +++ b/src/engine/machina/Makefile.am @@ -14,6 +14,7 @@ libmachinainclude_HEADERS = \ MidiAction.hpp \ Mutation.hpp \ Node.hpp \ + Problem.hpp \ Recorder.hpp \ SMFDriver.hpp \ types.hpp |