File: Makefile-Unixware7

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 (27 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Exim: OS-specific make file for Unixware7
# Based on information from James FitzGibbon <james@ehlo.com>

# If you want to use libbind, you need to
#     add -I/usr/local/bind/include to CFLAGS
#     add -L/usr/local/bind/lib to LFLAGS
#     remove -lresolv from LIBS
#     add LOOKUP_LIBS=-lbind
# The new settings should go in your Local/Makefile rather than here; then
# they will be usable for subsequent Exim releases.

CC=/usr/bin/cc
CFLAGS=-O -I/usr/local/include
LFLAGS=-L/usr/local/lib

LIBS=-lsocket -lnsl -lelf -lgen -lresolv
EXTRALIBS=-lwrap
EXTRALIBS_EXIMON=-lICE -lSM

RANLIB=@true
ERRNO_QUOTA=0

X11=/usr/lib/X11
XINCLUDE=-I/usr/include/X11
XLFLAGS=-L/usr/lib -L$(X11)/lib

# End