#this could be changed to cc
CC = gcc

#uncomment this if you get complaints about missing libraries
#LIB = -lsocket -lnsl

qping:	qping.c
	$(CC) -ansi -o qping qping.c $(LIB)

clean:
	rm -f qping core

tar:
	tar cvf qping11.tar Makefile qping.c qping11.txt
	gzip qping11.tar
