
all: icmp tun

icmp: icmp.c
	gcc -O2 -Wall -o $@ icmp.c

tun: tun.c
	gcc -O2 -Wall -o $@ tun.c

clean:
	rm -f *.o *~ icmp tun
