----- INSTALL ------------------------------------------------------------------

Basic Installation from the console:

	$ cd path/to/serenity.style-1.4

	$ ./configure --prefix=`kde-config --prefix`

	$ make

	$ su

	(as root)
	# make install

If configure fails, check that you have both
the Qt and KDE development headers installed.

Before trying anything else, if any of these steps fails, do:

	make -f Makefile.dist


Debian notes: 
You may need to append this to the configure line:
	--with-qt-includes=/usr/include/qt3

----- moc troubles -------------------------------------------------------------

Some people have reported that building fails with errors related to .moc files.

If this happens to you, don't panic.
In the source tree, there are "style" and "style/config" subdirs:

In the style dir do:
	moc -o serenity.moc serenity.h

And then in the style/config subdir do
	moc -o serenityconf.moc serenityconf.h

Then run make again, it should work.

