Displaying 1 result from an estimated 1 matches for "bburcg".
Did you mean:
bbsrc
2014 Nov 30
1
Using FPP preprocessor for Fortran Code
...essor I have to either add a
compiler flag (-cpp for gFortran) which is possibly not portable or
change the extension to .F, .fpp, .FPP (and a few others) which
automatically invokes the preprocessor (hopefully on all platforms). I
tried .fpp and added the following to Makevars:
OBJECTS=arsa.o bburcg.o bbwrcg.o bea.o criterion.o dist.o fprintf.o
greedy.o optimal.o stress.o
%.o: %.fpp
$(F77) $(ALL_FFLAGS) -c $< -o $@
It seems to work (I tried Linux and Windows) but R CMD check gives me:
* checking if this is a source package ... WARNING
Subdirectory ?src? contains:
arsa.fpp bb...