17 |
|
CXX=CC |
18 |
|
CXXDebugFlag=-g |
19 |
|
FCDebugFlag=-g |
20 |
+ |
FC:=f77 |
21 |
|
|
22 |
|
ArchiveSuffix = a |
23 |
|
ArchiveTool = ar -rc $@ $^ |
32 |
|
# Sun 4.2 CC |
33 |
|
#---------------------------------------------- |
34 |
|
ifeq ($(CCcompiler),Sun-CC-4.2) |
35 |
< |
CXXFLAGS+=-ptr$(template_dir) |
35 |
> |
CXXFLAGS+=-ptr$(template_dir) -features=rtti |
36 |
|
#template_dir=$(shell echo $@ ) |
37 |
< |
template_dir=$(shell echo $@ | sed -e 's/.*\(_.*\)\..*/tmpl\1/' -e 's/.*.o/tmpl/' -e 's/.*.a/tmpl/' ) |
37 |
> |
template_dir=$(shell echo $@ | sed -e 's/.*\(_.*\)\..*/tmpl\1/' -e 's/.*.o/tmpl/' -e 's/.*.a/tmpl/' -e 's/.*.exe/tmpl/') |
38 |
|
ArchiveCCTool = CC -xar -o $@ $^ -ptr$(template_dir) |
39 |
|
SharedCCTool = CC -G -o $@ $^ -ptr$(template_dir) |
40 |
|
DependencyCCTool = CC -xM1 $(CPPFLAGS) $^ > $@ |
80 |
|
extralib+=g2c m |
81 |
|
endif |
82 |
|
endif |
83 |
+ |
|
84 |
+ |
#---------------------------------------------- |
85 |
+ |
# GNU g77 Fortran compiler |
86 |
+ |
#---------------------------------------------- |
87 |
+ |
ifeq ($(F77compiler),g77) |
88 |
+ |
FC:=g77 |
89 |
+ |
endif |
90 |
+ |
|
91 |
+ |
|
92 |
+ |
#----------------------------------------------- |
93 |
+ |
# Insure++ |
94 |
+ |
#----------------------------------------------- |
95 |
+ |
Insure:=insure |