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.3 (Berkeley) 04/10/95
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 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/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
80#NROFF=	nroff -h
81NROFF=	groff -Tascii
82MANDOC=	-mandoc
83
84aliases.0: aliases.5
85	${NROFF} ${MANDOC} aliases.5 > aliases.0
86
87mailq.0: mailq.1
88	${NROFF} ${MANDOC} mailq.1 > mailq.0
89
90newaliases.0: newaliases.1
91	${NROFF} ${MANDOC} newaliases.1 > newaliases.0
92
93sendmail.0: sendmail.8
94	${NROFF} ${MANDOC} sendmail.8 > sendmail.0
95
96install: install-sendmail #install-docs
97
98install-sendmail: sendmail
99	#${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} sendmail ${BINDIR}
100	${INSTALL} sendmail ${BINDIR}
101	chmod ${BINMODE} ${BINDIR}/sendmail
102	for i in ${LINKS}; do rm -f $$i; ln -s ${BINDIR}/sendmail $$i; done
103	#${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
104	#    ${STDIR}/sendmail.st
105	${INSTALL} /dev/null ${STDIR}/sendmail.st
106	#${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 sendmail.hf ${HFDIR}
107	${INSTALL} sendmail.hf ${HFDIR}
108
109# doesn't actually install them -- you may want to install pre-nroff versions
110install-docs: aliases.0 mailq.0 newaliases.0 sendmail.0
111
112clean:
113	rm -f ${OBJS} sendmail #aliases.0 mailq.0 newaliases.0 sendmail.0
114
115# dependencies
116#   gross overkill, and yet still not quite enough....
117${OBJS}: sendmail.h conf.h
118