summaryrefslogtreecommitdiff
path: root/contrib/sendmail/Makefile
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-09-17 15:10:37 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-09-17 15:10:37 +0000
commit464dcfe228252ca8def24f45e4a0f34e6bd28297 (patch)
treea7f04887e56cfb9a681cc2285e5397d50c98ab1e /contrib/sendmail/Makefile
parent58fec675655367c5258890235a8cb889c2b53fac (diff)
Diffstat (limited to 'contrib/sendmail/Makefile')
-rw-r--r--contrib/sendmail/Makefile49
1 files changed, 0 insertions, 49 deletions
diff --git a/contrib/sendmail/Makefile b/contrib/sendmail/Makefile
deleted file mode 100644
index 97b2afc54c50..000000000000
--- a/contrib/sendmail/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id: Makefile.dist,v 8.15 2001/08/23 20:44:39 ca Exp $
-
-SHELL= /bin/sh
-SUBDIRS= libsm libsmutil libsmdb sendmail editmap mail.local \
- mailstats makemap praliases rmail smrsh vacation
-# libmilter: requires pthread
-BUILD= ./Build
-OPTIONS= $(CONFIG) $(FLAGS)
-
-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
-
-install-docs: 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: