/*
    Copyright (c) 1998--2006 Benhur Stein
    
    This file is part of Paj.

    Paj is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License as published by the
    Free Software Foundation; either version 2 of the License, or (at your
    option) any later version.

    Paj is distributed in the hope that it will be useful, but WITHOUT ANY
    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
    for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with Paj; if not, write to the Free Software Foundation, Inc.,
	51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
*/


//////////////////////////////////////////////////
/*      Author: Geovani Ricardo Wiedenhoft      */
/*      Email: grw@inf.ufsm.br                  */
//////////////////////////////////////////////////



Biblioteca libRastro

biblioteca de gerao e leitura de rastros de execuo desenvolvida no Laboratrio de Sistemas de Computao com o intuito de proporcionar ao programador o rastreamento e leitura de uma forma genrica e com baixa intrusividade no cdigo a ser rastreado.
	
	Manual de Instalao

Como root

Para compilar digite:

	#make

Para indicar o Diretrio que a biblioteca ser instalada, abra o arquivo Makefile e edite o diretrio.

"RASTRO_DIR=/usr/local/libRastro"

Para instalar digite:

	#make install

Como usurio normal

Sete em seu PATH o diretrio dos arquivos binrios.

"RASTRO_DIR_BIN=$(RASTRO_DIR)/bin"

DICA:
Abra o seu arquivo .bashrc e coloque a linha abaixo com o diretrio que voc instalou os binrios da biblioteca.
	
	export PATH=$PATH:/usr/local/libRastro/bin

