blob: b6db96adf8b5d7323e9fd3705482bd7f16764bc6 (
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
|
#
# Host is an i370 running OpenEdition
#
# Use GCC alloca
ALLOCA = alloca.o
# Don't bother fixing up header files, they're wierd
STMP_FIXPROTO =
# Set up to make using c89
X_CFLAGS=-D_ALL_SOURCE
CC=c89
# Explicitly use libiberty
CLIB=-liberty
LDFLAGS=-L../libiberty
# TAR Options
# Please note that OpenEdition confuses tar and pax, and
# thus uses the non-standard options 'xpf'
TAROUTOPTS=xpf
|