How to build Yudit?

Author: Gaspar Sinai
Version: 2007-11-01

Unix/Linux using rpm
--------------------
rpmbuild -tb  yudit-version.tar.gz 

Unix/Linux using tar
--------------------
tar xfz yudit-version.tar.gz
cd yudit-version
./configure 
make
make install

Windows95..XP 
-------------
You need:
-Visual C++ 6.0 in C:\Program Files\Microsoft Visual Studio\VC98
-GNU tools in C:/unix/usr/local/wbin
 cp.exe rm.exe make.exe tar.exe gunzip.exe
- Innno Setup (http://www.jrsoftware.org/isinfo.php)

Get a DOS Prompt at D:\Yudit 
(This is hardcoded in bin/wininst.bat, Makefile.conf(TOPDIR) and yudit.iss)

D:
cd \Yudit
gunzip yudit-version.tar.gz
cd yudit-version
cp Makefile.in Makefile
make 
cd bin
wininst.bat  (this will copy the necessary install files in D:\Yudit\Install)
open D:\Yudit\yudit-version\yudit.iss with Innno Setup
build will create an install file in D:\Yudit\Output

Minor version change
----------------------
If you want to change the minor version of Yudit you need to 
change the following files:

stoolkit/STypes.h
  #define SD_YUDIT_VERSION "2.9.0"

yudit-2.9.0.spec
  Version: 2.9.0

yudit.iss (Win32 Only)
  AppVerName=Yudit-2.9.0
  OutputBaseFileName=yudit-2.9.0
  [Registry] 2 places 2.9.0

bin/wininst.bat (Win32 Only)
  set TOPLEVEL="D:\yudit\yudit-2.9.0"

