diff options
Diffstat (limited to 'contrib/sendmail/Makefile')
-rw-r--r-- | contrib/sendmail/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/sendmail/Makefile b/contrib/sendmail/Makefile new file mode 100644 index 000000000000..0b44c4203190 --- /dev/null +++ b/contrib/sendmail/Makefile @@ -0,0 +1,26 @@ +# @(#)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: |