# Makefile for SMS 2.0 clients. # # $Source$ # $Header$ # $Author$ # # (c) Copyright 1988 by the Massachusetts Institute of Technology. # For copying and distribution information, please see the file # . DESTDIR= SUBDIRS= dcmmaint mailmaint passwd sms userreg blanche all: for i in ${SUBDIRS}; do \ (cd $$i; make ${MFLAGS} all); done install: for i in ${SUBDIRS}; do \ (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done clean: rm -f *~ *.bak for i in ${SUBDIRS}; do \ (cd $$i; make ${MFLAGS} clean); done