]> andersk Git - moira.git/blob - clients/Makefile
updated list of subdirs
[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= dcmmaint listmaint mailmaint passwd sms userreg
11
12 all:
13         for i in ${SUBDIRS}; do \
14                 (cd $$i; make ${MFLAGS} all); done
15
16 install:
17         for i in ${SUBDIRS}; do \
18                 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
19
20 clean:
21         rm -f *~ *.bak
22         for i in ${SUBDIRS}; do \
23                 (cd $$i; make ${MFLAGS} clean); done
24
This page took 0.03634 seconds and 5 git commands to generate.