--- Makefile +++ Makefile 1994/02/22 14:59:25 @@ -0,0 +1,14 @@ +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 +