--- cci/usr/src/ucb/tftp/Makefile 2019/07/28 12:24:19 1.1 +++ cci/usr/src/ucb/tftp/Makefile 2019/07/28 12:29:21 1.1.1.2 @@ -1,10 +1,20 @@ -# Source for this area not supported in general source release. Please -# refer to specific release package / software source. +# Makefile 6/12/83 -default: dummy -all: dummy -install: dummy -clean: dummy -dummy: - @echo "make complete" -# +MAKEPARAM = AS=${AS} CC=${CC} LD=${LD} INCLDIR=${INCLDIR} LIBDIR=${LIBDIR} ULIBDIR=${ULIBDIR} DESTDIR=${DESTDIR} +ALL= tftp +DESTDIR= +CFLAGS=-O -Dtahoe + +all: ${ALL} + +tftp: main.o tftp.o text.o + ${CC} main.o tftp.o text.o -o tftp + +clean: + rm -f ${ALL} *.o *.s errs core a.out t.? + +cleansrc: + rm -f *.c *.h Makefile + +install: + install -s tftp ${DESTDIR}/usr/ucb