Note about ratelimit resets.
[exim.git] / src / OS / Makefile-SunOS5-hal
1 # $Cambridge: exim/src/OS/Makefile-SunOS5-hal,v 1.2 2005/05/23 16:58:55 fanf2 Exp $
2
3 # Exim: OS-specific make file for SunOS5 on a HAL
4
5 # Note: The HAL runs a standard SunOS5 except that it has a 64 bit C
6 # compiler called hcc. To make things work pass the -KV7 flag to force
7 # 32bit compilation - this is necessary to interwork with some libraries.
8
9 CC=hcc
10 CFLAGS=-O -KV7
11 LIBIDENTCFLAGS="-KV7 -O -DHAVE_ANSIHEADERS"
12 LIBIDENTNAME=sunos5
13 RANLIB=@true
14 LIBS=-lsocket -lnsl -lkstat -lm
15 LIBRESOLV=-lresolv
16 X11=/usr/X11R6
17 XINCLUDE=-I$(X11)/include
18 XLFLAGS=-L$(X11)/lib -R$(X11)/lib
19
20 # End