default:
	make tftp

all:
	make clean
	mkae tftp

tftp:tftp.o
	cc tftp.o -o tftp

tftp.o:tftp.c tftp.h
	cc tftp.c -c

test:
	./tftp 127.0.0.1

clean:
	rm -f tftp *.o core
