]> andersk Git - moira.git/blame - clients/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / Makefile
CommitLineData
7189310c 1# Makefile for SMS 2.0 clients.
de56407f 2#
3# $Source$
4# $Header$
5# $Author$
6#
7189310c 7# (c) Copyright 1988 by the Massachusetts Institute of Technology.
8# For copying and distribution information, please see the file
9# <mit-copyright.h>.
de56407f 10
11DESTDIR=
12
3dce7ca4 13SUBDIRS= mailmaint passwd moira userreg blanche mrcheck
de56407f 14
15all:
16 for i in ${SUBDIRS}; do \
17 (cd $$i; make ${MFLAGS} all); done
18
19install:
20 for i in ${SUBDIRS}; do \
7eef31e6 21 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
de56407f 22
23clean:
7eef31e6 24 rm -f *~ *.bak
de56407f 25 for i in ${SUBDIRS}; do \
26 (cd $$i; make ${MFLAGS} clean); done
27
050550ba 28depend:
29 for i in ${SUBDIRS}; do \
30 (cd $$i; make ${MFLAGS} depend); done
This page took 0.200721 seconds and 5 git commands to generate.