summaryrefslogtreecommitdiff
path: root/usr.sbin/sendmail/mailstats
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-12 17:30:47 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-12 17:30:47 +0000
commite333077651052c2fd11ffab358f3ee4cb816121a (patch)
treedc752915509eb58b8eea52f2a755b46af56ef80c /usr.sbin/sendmail/mailstats
parentea8e6d5da5c5dec3f1c6a6c95f1a3d40eea5a184 (diff)
old files no longer in sendmail distribution (some have just moved)
Diffstat (limited to 'usr.sbin/sendmail/mailstats')
-rw-r--r--usr.sbin/sendmail/mailstats/Makefile.dist78
1 files changed, 0 insertions, 78 deletions
diff --git a/usr.sbin/sendmail/mailstats/Makefile.dist b/usr.sbin/sendmail/mailstats/Makefile.dist
deleted file mode 100644
index 5bf0f2048d8..00000000000
--- a/usr.sbin/sendmail/mailstats/Makefile.dist
+++ /dev/null
@@ -1,78 +0,0 @@
-#
-# This Makefile is designed to work on the old "make" program. It does
-# not use the obj subdirectory. It also does not install documentation
-# automatically -- think of it as a quick start for sites that have the
-# old make program (I recommend that you get and port the new make if you
-# are going to be doing any signficant work on sendmail).
-#
-# @(#)Makefile.dist 8.2 (Berkeley) 9/21/96
-#
-
-# use O=-O (usual) or O=-g (debugging)
-O= -O
-
-# location of sendmail source directory
-SRCDIR= ../src
-
-# environment definitions (e.g., -D_AIX3)
-ENVDEF=
-
-# see also conf.h for additional compilation flags
-
-# include directories
-INCDIRS=-I${SRCDIR} -I/usr/sww/include
-
-# loader options
-LDOPTS=
-
-# library directories
-LIBDIRS=-L/usr/sww/lib
-
-# libraries required on your system
-LIBS=
-
-# location of mailstats binary (usually /usr/sbin or /usr/etc)
-BINDIR= ${DESTDIR}/usr/sbin
-
-# additional .o files needed
-OBJADD=
-
-################### end of user configuration flags ######################
-
-CFLAGS= -I. $O ${INCDIRS} ${ENVDEF}
-
-OBJS= mailstats.o ${OBJADD}
-
-LINKS= ${DESTDIR}/usr/ucb/newaliases ${DESTDIR}/usr/ucb/mailq
-BINOWN= bin
-BINGRP= bin
-BINMODE=555
-
-ALL= mailstats mailstats.0
-
-all: ${ALL}
-
-mailstats: ${BEFORE} ${OBJS}
- ${CC} -o mailstats ${LDOPTS} ${OBJS} ${LIBDIRS} ${LIBS}
-
-#NROFF= nroff -h
-NROFF= groff -Tascii
-MANDOC= -mandoc
-
-mailstats.0: mailstats.8
- ${NROFF} ${MANDOC} mailstats.8 > mailstats.0
-
-install: install-mailstats install-docs
-
-install-mailstats: mailstats
- install -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} mailstats ${BINDIR}
-
-# doesn't actually install them -- you may want to install pre-nroff versions
-install-docs: mailstats.0
-
-clean:
- rm -f ${OBJS} mailstats mailstats.0
-
-# dependencies
-# gross overkill, and yet still not quite enough....
-${OBJS}: ${SRCDIR}/sendmail.h ${SRCDIR}/mailstats.h ${SRCDIR}/conf.h