CC = gcc
CFLAGS = -O2 -I.
LDFLAGS =
LDLIBS = -lsocket
PROG = ping

all: $(PROG)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)

