]> andersk Git - moira.git/blob - clients/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / Makefile
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
11 DESTDIR=
12
13 SUBDIRS= mailmaint passwd moira userreg blanche mrcheck
14
15 all:
16         for i in ${SUBDIRS}; do \
17                 (cd $$i; make ${MFLAGS} all); done
18
19 install:
20         for i in ${SUBDIRS}; do \
21                 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
22
23 clean:
24         rm -f *~ *.bak
25         for i in ${SUBDIRS}; do \
26                 (cd $$i; make ${MFLAGS} clean); done
27
28 depend:
29         for i in ${SUBDIRS}; do \
30                 (cd $$i; make ${MFLAGS} depend); done
This page took 0.073724 seconds and 5 git commands to generate.