# a simple makefile to build the routewatch executable

# the c compiler
#CC=gcc
CC=cc
# any libraries needed 
# for solaris:
# LIBS=-lsocket -lnsl
# for sunos 
# LIBS= 
LIBS=-lsocket -lnsl


routewatch: routewatch.c
	$(CC) -o routewatch routewatch.c $(LIBS)


