diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-19 13:33:09 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-03-19 13:33:09 +0000 |
commit | 6a39be45523edb254183bfa5a3140f944d9e8477 (patch) | |
tree | 219751ae26fb6bcd348525a69ad0df9dd54f9c16 /include | |
parent | ae892553ac289fbb5f3a9400c66a91e44f5a7af0 (diff) | |
download | ATCD-6a39be45523edb254183bfa5a3140f944d9e8477.tar.gz |
added -lrt, and split out CFLAGS and CCFLAGS
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_osf1_4.0.GNU | 8 | ||||
-rw-r--r-- | include/makeinclude/platform_osf1_4.0_g++.GNU | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/include/makeinclude/platform_osf1_4.0.GNU b/include/makeinclude/platform_osf1_4.0.GNU index 07925978975..ed18cba0870 100644 --- a/include/makeinclude/platform_osf1_4.0.GNU +++ b/include/makeinclude/platform_osf1_4.0.GNU @@ -1,10 +1,12 @@ # This platform macros file is intended to work with Digital UNIX 4.0 (OSF/1 4.0). -CC = cxx -g -pthread -ptr $(WRAPPER_ROOT)/ace/cxx_repository -CXX = cxx -w0 -g -pthread -ptr $(WRAPPER_ROOT)/ace/cxx_repository +CC = cxx +CXX = $(CC) +CFLAGS += -pthread -ptr $(WRAPPER_ROOT)/ace/cxx_repository +CCFLAGS += $(CFLAGS) -w0 DLD = $(CXX) LD = $(CXX) -LIBS += -pthread -ltli +LIBS += -pthread -ltli -lrt PIC = ARFLAGS = ruvZ # When libraries are archived, a hash index is automatically created so there diff --git a/include/makeinclude/platform_osf1_4.0_g++.GNU b/include/makeinclude/platform_osf1_4.0_g++.GNU index 5dba924add5..651e7365d6c 100644 --- a/include/makeinclude/platform_osf1_4.0_g++.GNU +++ b/include/makeinclude/platform_osf1_4.0_g++.GNU @@ -1,11 +1,13 @@ # This platform macros file is intended to work with Digital UNIX 4.0 # (OSF/1 4.0) and GCC in version 2.7.2.1 (or newer). -CC = gcc -g -D_REENTRANT -CXX = g++ -g -D_REENTRANT -fno-strict-prototypes +CC = gcc +CXX = g++ +CFLAGS += -D_REENTRANT +CCFLAGS += $(CFLAGS) -fno-strict-prototypes LD = $(CXX) DLD = $(CXX) -LIBS += -lpthread -lmach -lexc -ltli -lstdc++ +LIBS += -lpthread -lmach -lexc -ltli -lrt PIC = -fpic ARFLAGS = ruvZ # When libraries are archived, a hash index is automatically created so there |