How to install Checker ?

1) Build it with make.
2) become root (su)
3) save your old as ( mv /usr/bin/as /usr/bin/as.old)
4) install the new as (cp bin/as /usr/bin/as)
5) install the c-library:
	cp bin/libc_chkr.a /usr/lib/
	cp libchecker.o /usr/lib
6) install specs:
	cp patches/specs /usr/lib/gcc-lib/i486/2.4.5/
7) use it
 to compile *.c with checker:
 gcc -c -checker *.c $(CFLAGS)
 gcc -o my_prg -checker *.o /usr/lib/libchecker.o


