summaryrefslogtreecommitdiff
path: root/src/OS/Makefile-AIX
blob: 42659a6cde64b8817f39abfa0fba246bee71359c (plain)
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
# $Cambridge: exim/src/OS/Makefile-AIX,v 1.1 2004/10/06 15:07:39 ph10 Exp $

# Exim: OS-specific make file for AIX
# Written by Nick Waterman (nick@cimio.co.uk)

# Note that the output of uname -m is probably not what Philip expected,
# so you might end up with more build-AIX-random_number directories than
# you expected if you have too many AIX boxes, but it seems to work... I
# blame IBM.

# Note that nowadays you have to pay extra for a compiler with AIX!

CC=cc

# This needs to be in here rather than os.h-AIX because of regexp stuff.
# basically strchr is a #define, which means "extern char *strchr()"
# ruins things. __STR31__ seems to get around this by magic. The AIX
# include files are quite a confusing maze.

CFLAGS = -D__STR31__

# Needed for vfork() and vfork() only?

LIBS = -lbsd

# End