File: Makefile-SunOS5-hal

package info (click to toggle)
exim 3.36-18.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,684 kB
  • ctags: 3,574
  • sloc: ansic: 52,492; sh: 1,172; perl: 577; makefile: 343
file content (18 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Exim: OS-specific make file for SunOS5 on a HAL

# Note: The HAL runs a standard SunOS5 except that it has a 64 bit C
# compiler called hcc.  To make things work pass the -KV7 flag to force
# 32bit compilation - this is necessary to interwork with some libraries.

CC=hcc
CFLAGS=-O -KV7
LIBIDENTCFLAGS="-KV7 -O -DHAVE_ANSIHEADERS"
LIBIDENTNAME=sunos5
RANLIB=@true
LIBS=-lsocket -lnsl -lkstat
LIBRESOLV=-lresolv
X11=/usr/X11R6
XINCLUDE=-I$(X11)/include
XLFLAGS=-L$(X11)/lib -R$(X11)/lib

# End