Examples compiling

To compile the following examples you have to have gtkhtml and gtkhtml-devel packages installed. CFLAGS and LDFLAGS could be obtained using the gnome-config script.

Here is simple Makefile, which could be used for compiling the examples:


EXAMPLES = example1 example2 example3 example4 example5

CC = gcc
CFLAGS = `gnome-config gtkhtml --cflags`
LDFLAGS = `gnome-config gtkhtml --libs`

all:	$(EXAMPLES)