BIN_DIR= /usr/bin
all:
	gcc -o tcpscan tcpscan.c
install:
	strip tcpscan
	chmod 555 tcpscan
	mv tcpscan ${BIN_DIR}
