Tagged Questions
2
votes
2answers
115 views
Makefile - compiling back and forth
Following is the directory structure of my project:
expt-main
---------
Makefile_main
/ \
...
5
votes
1answer
153 views
A Makefile Puzzle: Multiple Programming Languages
I have a simple test Makefile:
hello: hello.o
.SUFFIXES: .c .f90 .o
.f90.o:
pgf90 -c -o $@ $<
.c.o:
cc -c -o $@ $<
You don't have to tell me that it having a foo.c and a foo.f90 in ...
0
votes
1answer
49 views
macro is not resolved in make rule
I have a make rule:
%.mod: %.f90
$(FORTRAN) $(FFLAGS) $< -o $(@:.mod=.o)
mv $(@:.mod=.o) obj
(and there are tabs before the commands, but I don't know how to make them appear here)
...
1
vote
2answers
525 views
Fortran makefile
I have the following question.
I have a set of Fortran90 source files, most of them contains modules.
I have to build a static library (.a) out of them, and I used the following Makefile.
...
2
votes
1answer
389 views
multiple unrecognized options in f77
I'm attempting to compile some complete Fortran code developed by someone else. The makefile makes references to CC, F77 and F90. Our server doesn't have F90 on it, but I could probably ask for it ...