Merge branch 'debian'
[hcoop/debian/exim4.git] / OS / unsupported / Makefile-Unixware7
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
12 CC=/usr/bin/cc
13 CFLAGS=-O -I/usr/local/include
14 LFLAGS=-L/usr/local/lib
15
16 HAVE_ICONV=yes
17
18 LIBS=-lsocket -lnsl -lelf -lgen -lresolv -lm
19
20 # Removed on the advice of Larry Rosenman
21 # EXTRALIBS=-lwrap
22
23 EXTRALIBS_EXIMON=-lICE -lSM
24
25 RANLIB=@true
26 ERRNO_QUOTA=0
27
28 X11=/usr/lib/X11
29 XINCLUDE=-I/usr/include/X11
30 XLFLAGS=-L/usr/lib -L$(X11)/lib
31
32 # End