freebsd-src/contrib/sendmail/Makefile
Peter Wemm c2aa98e247 Import sendmail-8.9.1 (slightly trimmed) onto a fresh branch under
src/contrib as per various discussions.  I will copy across our changes
and then point the Makefiles across once the dust has settled..
1998-08-03 05:56:20 +00:00

27 lines
508 B
Makefile

# @(#)Makefile.dist 8.2 (Berkeley) 2/17/98
SHELL= /bin/sh
SUBDIRS= src mail.local mailstats makemap praliases rmail smrsh
BUILD= ./Build
OPTIONS= $(CONFIG) $(FLAGS)
all clean install:: FRC
@for x in $(SUBDIRS); \
do \
(cd $$x; echo Making $@ in:; pwd; \
$(SHELL) $(BUILD) $(OPTIONS) $@); \
done
fresh:: FRC
@for x in $(SUBDIRS); \
do \
(cd $$x; echo Making $@ in:; pwd; \
$(SHELL) $(BUILD) $(OPTIONS) -c); \
done
$(SUBDIRS):: FRC
@cd $@; pwd; \
$(SHELL) $(BUILD) $(OPTIONS)
FRC: