]> andersk Git - moira.git/blame - clients/Makefile
replace hardcoded ATHENA realm with call to get_krbrlm();
[moira.git] / clients / Makefile
CommitLineData
de56407f 1# Makefile for first release of SMS.
2#
3# $Source$
4# $Header$
5# $Author$
6#
7
8DESTDIR=
9
8558fbc8 10SUBDIRS= aliasbld attachmaint clustermaint dcmmaint listmaint \
11 mailmaint nfsmaint passwd portmaint rvdmaint \
12 usermaint userreg
de56407f 13
14all:
15 for i in ${SUBDIRS}; do \
16 (cd $$i; make ${MFLAGS} all); done
17
18install:
19 for i in ${SUBDIRS}; do \
7eef31e6 20 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
de56407f 21
22clean:
7eef31e6 23 rm -f *~ *.bak
de56407f 24 for i in ${SUBDIRS}; do \
25 (cd $$i; make ${MFLAGS} clean); done
26
This page took 0.057006 seconds and 5 git commands to generate.