Let hoppers change direction, use range bits as offset
[fairymax.git] / README
1 This package contains the sources of the XBoard-compatible Chess and
2 Chess-variant engine Fairy-Max, and its dedicated derivatives ShaMax 
3 (for Shatranj) and MaxQi (for XiangQi = Chinese Chess). A Makefile
4 is provided to compile and install them. Normally this would require only
5 the command (given from the main directory of the package):
6
7 sudo make install
8
9 This will install the executables in /usr/games, (where XBoard expects
10 them), and their data files in /usr/share/games/fairymax.
11
12 Should you want to compile by hand, you could use the following 
13 commands:
14
15 gcc -O2 fairymax.c -o fairymax
16
17 gcc -O2 fairymax.c -DSHATRANJ -o shamax
18
19 gcc -O2 maxqi.c -o maxqi
20
21 In this case you will get versions that expect their fmax.ini or qmax.ini
22 files in the current direcory. To change the default path of the ini files,
23 you can include the argument 
24
25 -DINI_FILE=\"pathname\"
26
27 to the gcc compilation command line.
28
29 H.G.Muller
30