blob: 0b9c912e3b981ebef23c214c3cf2ff0fa724c755 (
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
35
36
37
38
39
|
# $Id$
# According to Ben Eng <ben@jetpen.com>, this file
# should allow ACE to be built on Linux using KAI C++ 3.3a.
#
# NOTE: evaluation copies of KCC might include libraries that
# were compiled with exception handling enabled. To enable link
# compatibility with those libraries, you must build ACE with
# exception handling enabled, as well. To do that, either set
# the exceptions macro below to 1, or build with:
# make exceptions=1
debug = 0
exceptions =
optimize = 1
CC = /opt/KCC/KCC_BASE/bin/KCC
CXX = $(CC)
CFLAGS += -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT \
-D_GNU_SOURCE
CCFLAGS += $(CFLAGS) -DNULL=0
DCFLAGS += +K0 -g
DLD = $(CC)
LD = $(CC)
LIBS += -ldl -lpthread -lm
ifndef exceptions
EXCEPTION = --no_exceptions
endif # ! exceptions
OCFLAGS += +K3 -O --one_instantiation_per_object $(EXCEPTION)
PIC = -fPIC
AR = $(CC)
ARFLAGS = $(EXCEPTION) -o
RANLIB = @true
SOFLAGS = $(CPPFLAGS) $(EXCEPTION)
SOBUILD = $(COMPILE.cc) $(PIC) $(EXCEPTION) -o $(VSHDIR)$*.o $<
PRELIB = @true
PRELIB_USES_OBJ_ONLY = 1
|