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