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

tftp: tftp.o main.o tftpsubs.o

install: tftp
	install -o root -g root -m 0755 tftp ${DEBDIR}/usr/bin
	install -o root -g root -m 0644 tftp.1 ${DEBDIR}/usr/man/man1

clean:
	rm -f *.o tftp

