Removed -DBIND_8_COMPAT from OS/Makefile-Darwin on the advice of Mac OS
[exim.git] / src / OS / Makefile-SunOS5-hal
CommitLineData
870f6ba8 1# $Cambridge: exim/src/OS/Makefile-SunOS5-hal,v 1.2 2005/05/23 16:58:55 fanf2 Exp $
61ec970d
PH
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
870f6ba8 14LIBS=-lsocket -lnsl -lkstat -lm
61ec970d
PH
15LIBRESOLV=-lresolv
16X11=/usr/X11R6
17XINCLUDE=-I$(X11)/include
18XLFLAGS=-L$(X11)/lib -R$(X11)/lib
19
20# End