How to install Checker ?

1) Build it with make.
   % make
   You should get a file libchecker.o
2) become root
   % su
3) and try make install
   % make install
   files will be installed in /usr/local/lib/checker/
   checkergcc will be installed in /usr/local/bin/
4) install the checkered c-library (See Checker-libs.tgz)
   % cd /
   % tar zxvf Checker-libs.tgz
5) 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 'checkergcc -x c++'
