TARGETS = ping
CC = gcc
CFLAGS = -g -lrt -std=c99
all: $(TARGETS) Makefile
clean:
rm -f $(TARGETS)
rm -f *.o *~
.PHONY: all clean