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