#
#      +--------------------------------------------------------+       
#      | Proyecto de Fin de Carrera de Fernando Migulez Palomo |      
#      |          Dpto. Electrnica y Comunicaciones            |       
#      |          Grupo de Ingeniera Telemtica (GIT)          |      
#      |            E.T.S.I.I. y I.T. Bilbao (Espaa)           |      
#      +--------------------------------------------------------+      
#                                                                       
#  Filename: Makefile                                                      
#  Author: Fernando Migulez Palomo                                     
#  Version: 1.0                                                          
#  Description: This is just the makefile to build pinj 
#                                                                       
#  Changes: Oct-3-2001  Fernando Migulez starts coding the module    
#                                                                       

# Main rule
pinj: pinj.o  
	gcc pinj.o -lpcap -lnet -o pinj

# Object files
pinj.o: pinj.c 
	gcc -c pinj.c -o pinj.o
