File: Makefile-DGUX

package info (click to toggle)
exim4 4.63-17
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 11,232 kB
  • ctags: 6,113
  • sloc: ansic: 86,696; sh: 4,495; xml: 1,876; makefile: 540; perl: 336
file content (33 lines) | stat: -rw-r--r-- 815 bytes parent folder | download
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
28
29
30
31
32
33
# $Cambridge: exim/exim-src/OS/Makefile-DGUX,v 1.2 2005/05/23 16:58:55 fanf2 Exp $

# Exim: OS-specific make file for DGUX
#
# Written by Ken Bailey (K.Bailey@rbgkew.org.uk) Feb 1998
# on dgux R4.11MU04 generic AViiON mc88100
# with no X

# Minor tidies to remove settings that are actually the default,
# in line with the style of other system files - PH.

BASENAME_COMMAND=/bin/basename
CHOWN_COMMAND=/bin/chown
CHGRP_COMMAND=/bin/chgrp

# PERL
# Perl is not necessary for running Exim itself, but some Perl utilities
# are provided for processing the logs. Perl 5 is assumed.
# DG ship perl version 4.036 in /bin/perl so need to use locally installed perl

PERL_COMMAND=/usr/local/bin/perl

# dg's version of gcc likes O2

CFLAGS=-O2

RANLIB=@true
LIBS=-lsocket -lnsl -lm
LIBRESOLV=-lresolv
DBMLIB=-ldbm

# End