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