Import Upstream version 4.92
[hcoop/debian/exim4.git] / OS / unsupported / Makefile-Unixware7
CommitLineData
420a0d19
CE
1# Exim: OS-specific make file for Unixware7
2# Based on information from James FitzGibbon <james@ehlo.com>
3
4# If you want to use libbind, you need to
5# add -I/usr/local/bind/include to CFLAGS
6# add -L/usr/local/bind/lib to LFLAGS
7# remove -lresolv from LIBS
8# add LOOKUP_LIBS=-lbind
9# The new settings should go in your Local/Makefile rather than here; then
10# they will be usable for subsequent Exim releases.
11
12CC=/usr/bin/cc
13CFLAGS=-O -I/usr/local/include
14LFLAGS=-L/usr/local/lib
15
16HAVE_ICONV=yes
17
18LIBS=-lsocket -lnsl -lelf -lgen -lresolv -lm
19
20# Removed on the advice of Larry Rosenman
21# EXTRALIBS=-lwrap
22
23EXTRALIBS_EXIMON=-lICE -lSM
24
25RANLIB=@true
26ERRNO_QUOTA=0
27
28X11=/usr/lib/X11
29XINCLUDE=-I/usr/include/X11
30XLFLAGS=-L/usr/lib -L$(X11)/lib
31
32# End