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