diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-26 22:18:58 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-02-26 22:18:58 +0000 |
commit | b67f0c1a3f376f1dc192e2365d9c78ee07bcc03c (patch) | |
tree | 65d284982f1f4ac85951e5af8207ceeb4ec1183e /include | |
parent | 8b73566046934e03f018dc7ac5a483e44eb53378 (diff) | |
download | ATCD-b67f0c1a3f376f1dc192e2365d9c78ee07bcc03c.tar.gz |
ChangeLog tag Mon Feb 26 15:54:33 2001 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_unixware_udk.GNU | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/include/makeinclude/platform_unixware_udk.GNU b/include/makeinclude/platform_unixware_udk.GNU new file mode 100644 index 00000000000..60e85b62649 --- /dev/null +++ b/include/makeinclude/platform_unixware_udk.GNU @@ -0,0 +1,47 @@ +# $Id$ + +# UnixWare V2.2.1.2 with g++ version 2.7.2.2 *not* using Orbix + +#ifndef debug +debug = 1 +#endif + +#ifndef exceptions +exceptions = 1 +#endif + +#ifndef threads +threads = 1 +#endif + + +CC = CC +CXX = CC + +CFLAGS += -Kthread + +#CFLAGS += -W -Wall -Wpointer-arith +CCFLAGS += $(CFLAGS) -Tno_implicit,no_auto,none -Wf,--display_error_number + +#ifeq ($(exceptions),1) +# CCFLAGS += -fexceptions +#endif + +DCFLAGS += -g +#DCFLAGS += -g + +OCCFLAGS += -O2 + +DLD = $(CXX) -g +LD = $(CXX) +LIBS += -lsocket -lnsl -lgen +PIC = -KPIC +AR = ar +ARFLAGS = ruv +RANLIB = /bin/true +#SOFLAGS = -assert pure-text +SOFLAGS = -G +# SOBUILD - compile into .so directly +SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $< +# SOLINK = $(SOLINK.cc) -o $@ $(LDFLAGS) $< +PRELIB = @true |