summaryrefslogtreecommitdiffstats
path: root/contrib/sendmail/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/sendmail/Makefile')
-rw-r--r--contrib/sendmail/Makefile25
1 files changed, 20 insertions, 5 deletions
diff --git a/contrib/sendmail/Makefile b/contrib/sendmail/Makefile
index 98ad6e5..547e46d 100644
--- a/contrib/sendmail/Makefile
+++ b/contrib/sendmail/Makefile
@@ -1,25 +1,40 @@
-# @(#)Makefile.dist 8.2 (Berkeley) 2/17/1998
+# $Id: Makefile.dist,v 8.9 1999/09/27 21:39:11 gshapiro Exp $
SHELL= /bin/sh
-SUBDIRS= src mail.local mailstats makemap praliases rmail smrsh
+SUBDIRS= libsmutil libsmdb sendmail mail.local mailstats makemap \
+ praliases rmail smrsh vacation
BUILD= ./Build
OPTIONS= $(CONFIG) $(FLAGS)
-all clean install:: FRC
+all: FRC
+ @for x in $(SUBDIRS); \
+ do \
+ (cd $$x; echo Making $@ in:; pwd; \
+ $(SHELL) $(BUILD) $(OPTIONS)); \
+ done
+
+clean: FRC
+ @for x in $(SUBDIRS); \
+ do \
+ (cd $$x; echo Making $@ in:; pwd; \
+ $(SHELL) $(BUILD) $(OPTIONS) $@); \
+ done
+
+install: FRC
@for x in $(SUBDIRS); \
do \
(cd $$x; echo Making $@ in:; pwd; \
$(SHELL) $(BUILD) $(OPTIONS) $@); \
done
-fresh:: FRC
+fresh: FRC
@for x in $(SUBDIRS); \
do \
(cd $$x; echo Making $@ in:; pwd; \
$(SHELL) $(BUILD) $(OPTIONS) -c); \
done
-$(SUBDIRS):: FRC
+$(SUBDIRS): FRC
@cd $@; pwd; \
$(SHELL) $(BUILD) $(OPTIONS)
OpenPOWER on IntegriCloud