Added patches for remote clamd operation and improved drwebd error handling. Contribu...
[exim.git] / src / OS / Makefile-SunOS5-hal
CommitLineData
61ec970d
PH
1# $Cambridge: exim/src/OS/Makefile-SunOS5-hal,v 1.1 2004/10/06 15:07:39 ph10 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
9CC=hcc
10CFLAGS=-O -KV7
11LIBIDENTCFLAGS="-KV7 -O -DHAVE_ANSIHEADERS"
12LIBIDENTNAME=sunos5
13RANLIB=@true
14LIBS=-lsocket -lnsl -lkstat
15LIBRESOLV=-lresolv
16X11=/usr/X11R6
17XINCLUDE=-I$(X11)/include
18XLFLAGS=-L$(X11)/lib -R$(X11)/lib
19
20# End