/* Copyright (c) 2017-2018 Marvin Eagle <trailblazer77_2000@yahoo.com>
 * 
 *		This file is part of Chord Sequencer.
 * 
 * 		Chord Sequencer is a program to create and interactively play
 * 		series of chords in the live performance, controlling chord
 * 		change by pedal (or other similar device). It uses midi and
 * 		must be connected to an external synthesizer. 
 *
 *    Chord Sequencer is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    Chord Sequencer is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *   along with Chord Sequencer.  If not, see <https://www.gnu.org/licenses/>.
 * 
 * 		Author: Marvin Eagle <trailblazer77_2000@yahoo.com>
 * 
*/

To install the Chord Sequencer on linux machine, 
1) change to the directory where the file configure.ac
	is located: (Sequencer-1.1 is a directory name currently)
2) run the following three commands:

	$  autoreconf --verbose --install --force
	$  ./configure --with-jack
	(which is the same as running plain ./configure)
	or you can do ./configure --with-alsa, which is not recommended
	$ make

At this point you will be able to run the program. No need to install it,
just run as described below from the directory you downloaded it to.
Don't close the terminal window yet.
To run program:
1) open jack and start it. (I am using qjackctl for this, but there are 
	other ways too)
2) in the terminal window, which is still open, change directory to 
sequencer-1.1/src:
$ cd src
inside sequencer-1.1/src run
$ ./sequencer

This should do it.

This program is best paired with Zynaddsubfx synthesizer, the process is
described in detail in the manual, which can be accessed from the menu 
Help-> Read Manual:
Good luck and enjoy the music!
