# Makefile 4.17 86/03/27 # DESTDIR= CFLAGS= -O # Programs that live in subdirectories, and have makefiles of their own. # SUBDIR= ansi apl bib courier cpm dsh help hyper icon jove kermit mh \ mkmf np100 patch rcs spms sunrpc tac tools # # Special purpose software that requires custom installation, # or may not be needed by all sites # OPTDIR= B dipress mmdf news notes pathalias pup rn sumacc umodem xns X all: ${SUBDIR} ${SUBDIR}: FRC cd $@; make ${MFLAGS} ${OPTDIR}: FRC cd $@; make ${MFLAGS} all install: -for i in ${SUBDIR}; do \ (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done clean: -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done -for i in ${OPTDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done FRC: