(For instructions in English see below)

--------------------------------------------------------------

Stellen Sie sicher, dass Qt 2 (evtl. zusaetzlich zu Qt 3)
installiert und die zugehoerige Umgebungsvariable gesetzt ist:

    export QTDIR=/usr/lib/qt2

Dieser Pfad gilt fuer SuSE 8.1. Unter Knoppix 3.7 gibt's kein
Qt 2, daher stattdessen:

    export QTDIR=/usr/share/qt3

Unter Knoppix 3.7 muessen auch die Makefiles noch etwas
gepatcht werden, da es statt der Library libqt.so nur die
multi-threaded Variante libqt-mt.so gibt. Ersetzen Sie daher
in der Zeile "LIBS=..." das Element

    -lqt
    
durch

    -lqt-mt
    
Kompilieren mit Qt 3 statt Qt 2 ist zwar moeglich, jedoch gibt
es damit ein paar Einschraenkungen:
    - Die Tasten sehen u. U. sehr klobig aus, je nach eingestelltem
      Stil des Fenster-Managers. Unter KDE ist der Desktop-Stil
      "HighColor Classic" brauchbar, den man mit dem Kontrollzentrum
      einstellen kann.
    - Die unsichtbaren Schaltflaechen werden auch dann nicht sichtbar,
      wenn man mit der Maus ueber sie faehrt.
    - Das Starten des Rechners dauert laenger.

Ein einzelner Rechner kann mit

    make -f Makefile_fx3600p,
    make -f Makefile_fx85v         oder
    make -f Makefile_ti30

uebersetzt werden. Das Binary liegt dann in

    fx3600p/fx3600p,
    fx85v/fxfx85v                  oder
    ti30/ti30.

Alternativ kann man auch alle Rechner auf einmal uebersetzen
mit

    make -f Makefile_all

Bis auf eine Warnung
    "calc_dlg_base.cpp: warning: taking address of temporary"
sollten beim Kompilieren keine Warnungen oder Fehler
auftauchen.

Falls das Kompilieren scheitert, weil die Makefiles nicht auf
Ihre Distribution angepasst sind (ich verwende SuSE Linux 8.1),
muessen Sie leider ein eigenes Projekt mit den Qt-Tools progen
und tmake neu hochziehen. Wie das geht, steht im
Programmierhandbuch (doc/html/index.html).

Vielleicht komme ich auch mal dazu, mich in autoconf
einzuarbeiten ...

Beachten Sie bitte auch die Installationshinweise in den
Benutzerhandbuechern (z.B. ti30/ti30_acc/doc/start.html).
Desktop-Icons in verschiedenen Groessen befinden sich im Ordner
Linux/Icons.

ERGAENZUNG:
Neuerdings gibt es auch eigene Projektdateien und Makefiles
fuer KDevelop 3.1.1/Qt 3 unter Knoppix 3.7, so dass das Patchen
der o.g. Makefiles fuer Qt 2 nicht mehr noetig ist. Man
uebersetzt einen einzelnen Rechner mit 

    make sub-fx3600p,
    make sub-fx85v         oder
    make sub-ti30,

alle Rechner auf einmal einfach mit

    make

--------------------------------------------------------------

Make sure to have Qt 2 (possibly additionally to Qt 3)
installed and set the appropriate environment variable:

	export QTDIR=/usr/lib/qt2

This path is valid for SuSE 8.1. Under Knoppix 3.7 there is no
Qt 2, therefore instead:

	export QTDIR=/usr/share/qt3

Under Knoppix 3.7 you have to patch the Makefiles a little
because there is no library libqt.so. Replace the appropriate
entry in the line "LIBS=..."

	-lqt

by

	-lqt-mt

which will link the multi-threaded variant of the library.

Compiling with Qt 3 instead of Qt 2 is possible, however, there
are some shortcomings:
	- the keys may look very clumsy, this depends on the desktop
	  manager's settings. With KDE the style "HighColor Classic"
	  looks well; set it within the KDE Control Center.
	- The invisible Buttons appear with Qt 2 when the mouse
	  rests over them - not so with Qt 3.
	- Starting the application lasts longer.

A single calculator can be built with:

	make -f Makefile_fx3600p,
	make -f Makefile_fx85v         or
	make -f Makefile_ti30

The binary is located then in

	fx3600p/fx3600p,
	fx85v/fxfx85v                  or
	ti30/ti30.

Alternatively you can compile all calculators at the same time
with

	make -f Makefile_all

With the exception of the warning
	"calc_dlg_base.cpp: warning: taking address of temporary"
there should be no more warnings or errors in the compilation
process.

In case this does not work because the makefiles are not
adjusted to your distribution (I use SuSE Linux 8.1) you
may build your own project using the Qt-tools progen and tmake.
How this is done is described in the programming manual
(doc/html/index.html) in chapter 6 (in German only, sorry).

Perhaps I will have the time some day to read through the
autoconf documentation ...

Please, have a look at the installation notes in the user
manuals too (e.g. ti30/ti30_acc/doc/start.html).
Desktop icons you will find in the folder Linux/Icons.

COMPLETION:
Recently there are special project files and makefiles for
KDevelop 3.1.1/Qt 3/Knoppix 3.7, patching of the makefiles
for Qt 2 described above is not necessary any more.
A single calculator can be built with:

    make sub-fx3600p,
    make sub-fx85v         or
    make sub-ti30

Alternatively you can compile all calculators at the same time
just with

    make

--------------------------------------------------------------

