CFLAGS = -O2 -fomit-frame-pointer -m486 \
	-include /usr/include/bsd/bsd.h -I/usr/include/bsd -Dsin=x_sin
LDFLAGS = -s -v
LDLIBS = -lbsd

tftp: tftp.o main.o tftpsubs.o

install: tftp
	install tftp /usr/bin
	install -m644 tftp.1 /usr/man/man1

clean:
	rm -f *.o tftp

