1#
2#  This makefile is for clipper-based Intergraph systems running CLIX.
3#  It and the defines supporting it in the source tree should be considered
4#  alpha-quality and used at own risk.
5#
6#  Porting done for CICNet, Inc., on behalf the Michigan State Department
7#  of Natural Resources.
8#
9#  --Paul Southworth <pauls@cic.net>
10#
11#	@(#)Makefile.CLIX	8.1 (Berkeley) 04/12/94
12#
13
14# make sure the shell constructs below use the right shell
15SHELL=	/bin/sh
16
17# use O=-O (usual) or O=-g (debugging)
18O=	-O
19
20CC=	gcc
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=	-DNDBM
30
31# environment definitions (e.g., -D_AIX3)
32ENVDEF=	-DCLIX
33
34# see also conf.h for additional compilation flags
35
36# include directories
37INCDIRS= -I/usr/include
38
39# library directories
40LIBDIRS=
41
42# libraries required on your system
43LIBS=	-lnsl -lbsd
44
45# location of sendmail binary (usually /usr/sbin or /usr/lib)
46BINDIR=	${DESTDIR}/usr/lib
47
48# location of sendmail.st file (usually /var/log or /usr/lib)
49STDIR=	${DESTDIR}/usr/lib
50
51# location of sendmail.hf file (usually /usr/share/misc or /usr/lib)
52HFDIR=	${DESTDIR}/usr/lib
53
54# additional .o files needed
55OBJADD= getusershell.o
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 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/bin/newaliases ${DESTDIR}/usr/bin/mailq
68BINOWN=	root
69BINGRP=	mail
70BINMODE=6555
71INSTALL=cp
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	${INSTALL} sendmail ${BINDIR}
99	chmod ${BINMODE} ${BINDIR}/sendmail
100	for i in ${LINKS}; do rm -f $$i; ln -s ${BINDIR}/sendmail $$i; done
101	#${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
102	#    ${STDIR}/sendmail.st
103	${INSTALL} /dev/null ${STDIR}/sendmail.st
104	#${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 sendmail.hf ${HFDIR}
105	${INSTALL} sendmail.hf ${HFDIR}
106
107# doesn't actually install them -- you may want to install pre-nroff versions
108install-docs: aliases.0 mailq.0 newaliases.0 sendmail.0
109
110clean:
111	rm -f ${OBJS} sendmail #aliases.0 mailq.0 newaliases.0 sendmail.0
112
113# dependencies
114#   gross overkill, and yet still not quite enough....
115${OBJS}: sendmail.h conf.h
116