QWT Installation on UN*X Systems
--------------------------------

1. Qwt comes with preconfigured makefiles for Linux, FreeBSD, and
   Solaris. For other architectures, it is recommended to use the 
   tmake utility, which is available from ftp.troll.no. 
   Note: To run tmake, you need Perl5.

2. A) If you have tmake:
	a) Make sure that your QTDIR and TMAKEPATH enviroment 
	  variables are set correctly.
	b) type 'make tmake' to create the makefiles in all 
	   subdirectories. Note: Tmake overwrites the original makefiles,
	   which can be restored (if needed) with 'make no-tmake'. 
	c) type 'make'

   B) If you don't have tmake:
   	a) You need GNU make. Other makes won't work. GNU make can be
   	   downloaded via ftp from prep.ai.mit.edu.
   	b) Edit Makefile.common
   	c) Type 'make <platform>'. Supported platforms are linux-gcc,
   	   freebsd-gcc, solaris-gcc, and solaris-cc.
   	d) type 'make'

3. Install the files found in the lib and include subdirectories
   on your system. Example:
   	mv lib/* /usr/local/lib
   	mkdir /usr/local/include/qwt 
	cp include/* /usr/local/include/qwt
   Don't forget to run 'ldconfig' if necessary.

4. To try out the examples, make sure that your 
   LD_LIBRARY_PATH environment variable contains the directory 
   where libqwt.* can be found. Examples:

   a) sh, bash, zsh:
   	export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:your_libqwt_dir
   b) csh, tcsh:
   	setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:your_libqwt_dir
   
5. If you have a Linux system, you might also have a look at
   apps/linux.
