# Makefile for the FSP Port Scanner  -  by Cuda
#############################################################################
# This is where the version number string comes from:
#
VERSION_STR="Original Caltech version 1.0, Dec 1991"

CFLAGS=-O

PROGS=	fspscan

all:	  ${PROGS}

fspscan: fspscan.o
	cc ${CFLAGS} -o ${PROGS} ${PROGS}.o ${LIB}

fspscan.o: fspscan.c 

clean:
	rm -f *.o ${PROGS}

