SUPPORTED SYSTEMS

    lookat / bekijk should compile and run on most Unix alike operation 
    systems with ncurses.
    
    
INSTALLATION

    * To build and install lookat/bekijk, type:

    		$ ./configure --prefix=/usr/local/lookat
		$ make
        	$ make install

    * To build and install  lookat on NetBSD, type:

	Install ncurses

		# pkg_add ncurses

	Run configure

	    Use ncursesXXX-config to set CPPFLAGS and LIBS 

		$ ./configure CPPFLAGS="`ncurses5-config --cflags`/.." LIBS="`ncurses5-config --libs`"

	    Or set them manually 

		$ ./configure CPPFLAGS="-I/usr/pkg/include/" LIBS="-Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lncurses"

	Make

		$ make 
		$ make install

    * To build without debug information, type:

		$ ./configure --prefix=/usr/local/lookat CFLAGS="-O2"

