Changes to PURIFY. Doesn't take g77 as an option, so not instrumenting

the fortran routines.
This commit is contained in:
Harry Moffat 2008-12-30 21:58:10 +00:00
parent b2cf384cea
commit bcdfcc46d6
2 changed files with 9 additions and 3 deletions

View file

@ -79,8 +79,12 @@ ifeq ($(do_ranlib),1)
@RANLIB@ $(LAPACKLIB)
endif
#
# Right now g77 is not a known compiler to PURIFY. Why,
# I don't know. Taking the instrumentation out for now
#
%.o : %.f
$(PURIFY) @F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
@F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
$(OBJS): Makefile

View file

@ -57,9 +57,11 @@ endif
%.o : %.cpp
$(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ $(INCLUDES)
#
# Right now g77 is not known to PURIFY. Why I don't know.
#
%.o : %.f
$(PURIFY) @F77@ -c $< $(F_FLAGS)
@F77@ -c $< $(F_FLAGS)
$(OBJS): Makefile