Currently I am compiling my python libraries using manually the f2py3
command such as fp2py3 -c -m xxx_yyy_lib xxx_yyy_lib_fortran.f
.
Do you have any idea if I can compile automatically all my files using a Makefile?
I have tried to used the following one but it is not working
SRCS = $(wildcard *.f)
all:
f2py3 -c -m $< $(SRCS)