--- cci/usr/src/etc/ftpd/Makefile 2019/07/28 12:24:19 1.1 +++ cci/usr/src/etc/ftpd/Makefile 2019/07/28 12:24:41 1.1.1.2 @@ -1,10 +1,23 @@ -# Source for this area not supported in general source release. Please -# refer to specific release package / software source. - -default: dummy -all: dummy -install: dummy -clean: dummy -dummy: - @echo "make complete" +# @(#)Makefile 4.2 6/12/83 # + +MAKEPARAM = AS=${AS} CC=${CC} LD=${LD} INCLDIR=${INCLDIR} LIBDIR=${LIBDIR} ULIBDIR=${ULIBDIR} DESTDIR=${DESTDIR} +ALL= ftpd.o ftpcmd.o glob.o vers.o +DESTDIR= +CFLAGS= -O + +ftpd: ${ALL} + ${CC} -o ftpd ${ALL} + +vers.o: ftpd.c ftpcmd.y + sh newvers.sh + ${CC} -c vers.c + +install: + install -s ftpd ${DESTDIR}/etc/ftpd + +clean: + rm -f ftpd *.o *.s errs core a.out t.? yacc.* y.tab.c + +cleansrc: + rm -f *.[cy] *.sh version Makefile