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#	UnixWare 1.1 Makefile from John Warburton <jwarb@SACBH.com.au>.
9#
10#	@(#)Makefile.UNIX_SV.4.x.i386	8.1 (Berkeley) 12/28/94
11#
12
13# make sure the shell constructs below use the right shell
14SHELL=	/bin/sh
15
16# use O=-O (usual) or O=-g (debugging)
17O=	-O
18
19CC=	gcc
20#DESTDIR=/usr/local/sendmail
21
22# define the database mechanism used for alias lookups:
23#	-DNDBM -- use new DBM
24#	-DNEWDB -- use new Berkeley DB
25#	-DNIS -- include NIS support
26# The really old (V7) DBM library is no longer supported.
27# See READ_ME for a description of how these flags interact.
28#
29DBMDEF=	-DNEWDB -DNDBM
30
31# environment definitions (e.g., -D_AIX3)
32ENVDEF=	-D__svr4__ -DUNIXWARE
33
34# see also conf.h for additional compilation flags
35
36# include directories
37INCDIRS=-I/usr/ucbinclude
38
39# library directories
40LIBDIRS=-L/usr/ucblib
41
42# libraries required on your system
43LIBS=	-lc -lucb -ldbm -lresolv -lsocket -lnsl -lelf
44
45# location of sendmail binary (usually /usr/sbin or /usr/lib)
46BINDIR=	${DESTDIR}/usr/ucblib
47
48# location of sendmail.st file (usually /var/log or /usr/lib)
49STDIR=	${DESTDIR}/usr/ucblib
50
51# location of sendmail.hf file (usually /usr/share/misc or /usr/lib)
52HFDIR=	${DESTDIR}/usr/ucblib
53
54# additional .o files needed
55OBJADD=
56
57###################  end of user configuration flags  ######################
58
59CFLAGS=	-I. $O ${INCDIRS} ${DBMDEF} ${ENVDEF}
60
61OBJS=	alias.o arpadate.o clock.o collect.o conf.o convtime.o daemon.o \
62	deliver.o domain.o envelope.o err.o headers.o macro.o main.o \
63	map.o mci.o mime.o parseaddr.o queue.o readcf.o recipient.o \
64	savemail.o srvrsmtp.o stab.o stats.o sysexits.o \
65	trace.o udb.o usersmtp.o util.o version.o ${OBJADD}
66
67LINKS=	${DESTDIR}/usr/ucb/newaliases ${DESTDIR}/usr/ucb/mailq
68BINOWN=	root
69BINGRP=	mail
70BINMODE=6555
71INSTALL=/usr/ucb/install
72
73ALL=	sendmail aliases.0 mailq.0 newaliases.0 sendmail.0
74
75all: ${ALL}
76
77sendmail: ${BEFORE} ${OBJS}
78	${CC} -o sendmail ${OBJS} ${LIBDIRS} ${LIBS}
79
80NROFF=	nroff -h
81
82aliases.0: aliases.5
83	${NROFF} -mandoc aliases.5 > aliases.0
84
85mailq.0: mailq.1
86	${NROFF} -mandoc mailq.1 > mailq.0
87
88newaliases.0: newaliases.1
89	${NROFF} -mandoc newaliases.1 > newaliases.0
90
91sendmail.0: sendmail.8
92	${NROFF} -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