YAMP (or "modplay") was originally made on my phone to test libmodplug.
After succeeding, I started adding more and more features (like argument parsing using argp, song information, UIs and libopenmpt).
Eventually I realized that this is a pretty cool project, so I converted the folder to a git repo and uploaded it to GitHub.
To build YAMP, create a directory named build inside the repository, and enter it:
mkdir build
cd buildCreate a Makefile using cmake:
cmake ..And now compile it:
makeTo play a file, just execute yamp module_file.mod.
For help with different arguments, run yamp --help.

