blob: 72ae4735730ccb20a35fe0f849196223055cb39c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This platform macros file is intended to work with Digital UNIX 3.2 (OSF/1 3.2).
CC = cxx -non_shared
CXX = cxx -x cxx -w0 -non_shared
#DLD = ld -non_shared
DLD = ld -shared
LD = $(CXX)
LIBS += -lpthreads -lmach -lsys5 -lxti -ltli -lcxx -lexc -lc
PIC = -pic
ARFLAGS = ruv
RANLIB = ranlib
SOFLAGS = -shared -assert
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $<; \
$(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o -lcxx -ltask -lexc -lc
|