install correct aliases file
[unix-history] / usr / src / usr.sbin / sendmail / Makefile
CommitLineData
63b261a5 1#
c509f20e 2# Copyright (c) 1988 The Regents of the University of California.
1a5e5835 3# All rights reserved.
63b261a5 4#
1a5e5835 5# Redistribution and use in source and binary forms are permitted
c509f20e
KB
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation,
8# advertising materials, and other materials related to such
9# distribution and use acknowledge that the software was developed
10# by the University of California, Berkeley. The name of the
11# University may not be used to endorse or promote products derived
12# from this software without specific prior written permission.
13# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
63b261a5 16#
c509f20e 17# @(#)Makefile 4.14 (Berkeley) %G%
1a5e5835
KB
18#
19SUBDIR= lib src aux
63b261a5 20
1a5e5835 21all: ${SUBDIR}
63b261a5 22
1a5e5835
KB
23${SUBDIR}: FRC
24 cd $@; make ${MFLAGS}
ae2d3983 25
c509f20e 26clean cleandir depend: FRC
1a5e5835 27 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done
63b261a5 28
1a5e5835
KB
29install: FRC
30 -mkdir ${DESTDIR}/usr/spool/mqueue
31 chown root.wheel ${DESTDIR}/usr/spool/mqueue
32 chmod 775 ${DESTDIR}/usr/spool/mqueue
33 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} install); done
ace8dd29 34