blob: 00cd1f6c2e9eee82bd059d21de433620d869353a (
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
|
# $Id$
# Irix 5.3 with SGI C++
# This suppresses common compiler warnings which appear in the
# ACE code but should not matter. The warnings can be turned on
# again by removing the -woff clause in the CPPFLAGS definition.
debug = 1
CC = cc
CXX = CC
CCFLAGS += $(CFLAGS)
DCFLAGS += -g
DLD = $(CXX)
LD = $(CXX)
CPPFLAGS += -ptused -prelink +pp -woff 3203,3209,3161,3262,3665
LIBS =
PIC = -KPIC
AR = ar
ARFLAGS = r
RANLIB = echo
SOFLAGS += -shared $(CPPFLAGS) -all
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<; \
$(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o
|