Fixed zoom so it centers on current general area.
[epichord.git] / INSTALL
blobe7aca4a3372a6227f28afc0bea3a8988a77a2082
1 This is autotools.
3 To build the program, do
5   ./configure
6   make
8 and then
10   make install
12 as root to install to the default location.
15 When you run into problems, make sure you have the dependency libraries
16 installed. FLTK 2 and JACK with midi support (any recent version) is
17 required. 
19 NOTE that FLTK2's default configuration will not build the shared libs. 
20 Remember to use --enable-shared when building FLTK2.
22 After building you may have an error message about missing graphics and
23 buttons may appear blank. This is caused by not running 'make install'
24 and attempting to run the program from another location.
26 You may choose where to install the program by doing
28   ./configure --prefix=/usr
30 This will install the program in /usr (/usr/bin /usr/share and so on)
32 And if you do not want to install the program, you may set the location
33 the program searches for graphics and documentation with
35   ./configure --datadir=/usr/share
37 Note that in the above example, the program will search in the directory
39 /usr/share/epichord/gfx for the graphics and
40 /usr/share/epichord/doc for the documentation
42 In order to run the program from its current location without installing, 
43 for instance /home/bob/src/epichord you can do this
45   ./configure --datadir=/home/bob/src