blob: fa63d02aa5e08f8aa0e8c422f632f78631088e3c (
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
27
28
29
30
31
32
33
34
|
#-------------------------------------------------------------------------
#
# postgres.mk.ultrix4--
# DEC MIPS/Ultrix 4.x specific rules and variables
#
# Copyright (c) 1994-5, Regents of the University of California
#
# $Id: postgres.mk.ultrix4,v 1.1.1.1 1996/07/09 06:22:20 scrappy Exp $
#
#-------------------------------------------------------------------------
ifndef MK_PORT
MK_PORT= ultrix4
#
# for postgres.mk
#
ifdef ENFORCE_ALIGNMENT
CFLAGS_BE= -DNOFIXADE
endif
# install creates intermediate directories
NO_BEFOREINSTL= true
INSTALL= /usr/bin/install
RANLIB= /usr/bin/ranlib
#
# for postgres.user.mk
#
CFLAGS_SL= -G 0
SLSUFF= .o
endif
|