How to install Checker ?

1) build the makefile
   % ./configure
   If you want to compile in a different directory from the one containing
   the source code, 'cd' to the directory and run 'configure' with the
   option '--srcdir=DIR', where DIR is the directory that contains the
   source code.
   You can specify the target:
   % ./configure i386-linux
2) Build it with make.
   % make dep
   % make
   You should get a file libchecker.o
3) become root
   % su
4) and try make install
   % make install
   files will be installed in /usr/local/lib/checker/
   checkergcc, checkerg++ will be installed in /usr/local/bin/
5) install the checkered c-library (See Checker-libs-V0.5.tgz)
   % cd /
   % tar zxvf Checker-libs-V0.5.tgz
5b) You can also install the X libs (See Checker-Xlibs-V0.4.tgz)
   % cd /usr/local/lib/checker
   % tar zxvf Checker-Xlibs-V0.4.tgz
   WARNING: I have not tested them.
6) use it
 to compile *.c with checker:
 checkergcc -c *.c $(CFLAGS)
 checkergcc -o my_prg *.o
 i.e. replace 'cc' or 'gcc' by 'checkergcc'
 If you want to use 'g++', you can do use 'checkerg++'
