1# 2# This Makefile is designed to work on the old "make" program. It does 3# not use the obj subdirectory. It also does not install documentation 4# automatically -- think of it as a quick start for sites that have the 5# old make program (I recommend that you get and port the new make if you 6# are going to be doing any signficant work on sendmail). 7# 8# Based on a Makefile for Dell SVR4 Issue 2.2 from Kimmo Suominen 9# <kim@grendel.lut.fi> -- I haven't tested this myself. It may 10# work on other SVR4 ports. 11# 12# @(#)Makefile.Dell 8.2 (Berkeley) 03/05/94 13# 14 15# make sure the shell constructs below use the right shell 16SHELL= /bin/sh 17 18# use O=-O (usual) or O=-g (debugging) 19O= -O2 20 21CC= gcc 22#DESTDIR=/usr/local/sendmail 23 24# define the database mechanism used for alias lookups: 25# -DNDBM -- use new DBM 26# -DNEWDB -- use new Berkeley DB 27# -DNIS -- include NIS support 28# The really old (V7) DBM library is no longer supported. 29# See READ_ME for a description of how these flags interact. 30# 31DBMDEF= -DNEWDB -DNDBM 32 33# environment definitions (e.g., -D_AIX3) 34ENVDEF= -D__svr4__ 35 36# see also conf.h for additional compilation flags 37 38# include directories 39INCDIRS= 40 41# library directories 42LIBDIRS= 43 44# libraries required on your system 45LIBS= -ldb -ldbm -lresolv -lsocket -lnsl -lelf 46 47# location of sendmail binary (usually /usr/sbin or /usr/lib) 48BINDIR= ${DESTDIR}/usr/ucblib 49 50# location of sendmail.st file (usually /var/log or /usr/lib) 51STDIR= ${DESTDIR}/usr/ucblib 52 53# location of sendmail.hf file (usually /usr/share/misc or /usr/lib) 54HFDIR= ${DESTDIR}/usr/ucblib 55 56# additional .o files needed 57OBJADD= 58 59################### end of user configuration flags ###################### 60 61CFLAGS= -I. $O ${INCDIRS} ${DBMDEF} ${ENVDEF} 62 63OBJS= alias.o arpadate.o clock.o collect.o conf.o convtime.o daemon.o \ 64 deliver.o domain.o envelope.o err.o headers.o macro.o main.o \ 65 map.o mci.o parseaddr.o queue.o readcf.o recipient.o \ 66 savemail.o srvrsmtp.o stab.o stats.o sysexits.o \ 67 trace.o udb.o usersmtp.o util.o version.o ${OBJADD} 68 69LINKS= ${DESTDIR}/usr/ucb/newaliases ${DESTDIR}/usr/ucb/mailq 70BINOWN= root 71BINGRP= mail 72BINMODE=6555 73INSTALL=/usr/ucb/install 74 75ALL= sendmail aliases.0 mailq.0 newaliases.0 sendmail.0 76 77all: ${ALL} 78 79sendmail: ${BEFORE} ${OBJS} 80 ${CC} -o sendmail ${OBJS} ${LIBDIRS} ${LIBS} 81 82aliases.0: aliases.5 83 nroff -h -mandoc aliases.5 > aliases.0 84 85mailq.0: mailq.1 86 nroff -h -mandoc mailq.1 > mailq.0 87 88newaliases.0: newaliases.1 89 nroff -h -mandoc newaliases.1 > newaliases.0 90 91sendmail.0: sendmail.8 92 nroff -h -mandoc sendmail.8 > sendmail.0 93 94install: install-sendmail install-docs 95 96install-sendmail: sendmail 97 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} sendmail ${BINDIR} 98 for i in ${LINKS}; do rm -f $$i; ln -s ${BINDIR}/sendmail $$i; done 99 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ 100 ${STDIR}/sendmail.st 101 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 sendmail.hf ${HFDIR} 102 103# doesn't actually install them -- you may want to install pre-nroff versions 104install-docs: aliases.0 mailq.0 newaliases.0 sendmail.0 105 106clean: 107 rm -f ${OBJS} sendmail aliases.0 mailq.0 newaliases.0 sendmail.0 108 109# dependencies 110# gross overkill, and yet still not quite enough.... 111${OBJS}: sendmail.h conf.h 112