]> andersk Git - moira.git/blame - clients/Makefile
upped string lengths to reasonable levels.
[moira.git] / clients / Makefile
CommitLineData
de56407f 1# Makefile for first release of SMS.
2#
3# $Source$
4# $Header$
5# $Author$
6#
7
8DESTDIR=
9
7eef31e6 10SUBDIRS= aliasbld listmaint passwd servermaint userreg usermaint mailmaint
de56407f 11
12all:
13 for i in ${SUBDIRS}; do \
14 (cd $$i; make ${MFLAGS} all); done
15
16install:
17 for i in ${SUBDIRS}; do \
7eef31e6 18 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
de56407f 19
20clean:
7eef31e6 21 rm -f *~ *.bak
de56407f 22 for i in ${SUBDIRS}; do \
23 (cd $$i; make ${MFLAGS} clean); done
24
This page took 0.106776 seconds and 5 git commands to generate.