summaryrefslogtreecommitdiff
path: root/synth/Makefile
AgeCommit message (Collapse)Author
2011-01-09envelope_update_frames can now be set via CLI and config fileFlorian Jung
2011-01-08Envelope::get_level() gets called rarely nowFlorian Jung
Also, changed .gitignore to ignore gmon.out
2011-01-07Improved note-compiler and added TODO-entriesFlorian Jung
2011-01-06The synthesizer can now load the compiled notesFlorian Jung
There are still issues: - filtertest.prog.so: output_note-message which is not true - huge size of the .so (48K are too much!)
2010-12-31Add initial code for the note-compilerFlorian Jung
The note-compiler now has a Parser class which knows about possible parameter changes (by controller, velocity or simply user definition). Furthermore, several files were adapted (by stripping unneeded code, adding the bool foo_const variables etc.). Small fix in util.c which causes extract_var("foo") to return "foo" instead of "". Fixes in both Makefiles.
2010-12-30Improved Makefile and .gitignoreFlorian Jung
2010-12-30Note inherits from NoteSkel -- DOES NOT WORK!Florian Jung
The program compiles well, but as soon as a note is created, it exits, because a pure virtual method is called in NoteSkel's ctor (which is called before Note's ctor) which tries to call a function which is implemented in Note, but not in NoteSkel
2010-12-29Initial commitFlorian Jung