Skip to content
Snippets Groups Projects
Commit 3cb38f7c authored by ESCOBAR MUNOZ Juan's avatar ESCOBAR MUNOZ Juan
Browse files

Juan 26/10/2022:Makefile, add new variable SPLL?=spll , for possibility to...

Juan 26/10/2022:Makefile, add new variable SPLL?=spll , for possibility to change default "spll" command
parent ba59eea2
No related branches found
No related tags found
No related merge requests found
......@@ -524,25 +524,25 @@ ARFLAGS=r
#
# GENERATION OF DEPENDANCE FILES : *.D
#
SPLL ?= spll
%.D:%.F90
$(CPP) $(INC) $(CPPFLAGS) $< > $(OBJDIR)/$(*F).f90
spll $(NSOURCE) $(OBJDIR)/$(*F).f90
$(SPLL) $(NSOURCE) $(OBJDIR)/$(*F).f90
rm -f $(OBJDIR)/$(*F).f90
%.D:%.f90
$(CPP) $(INC) $(CPPFLAGS) $< > $(OBJDIR)/$(*F).f90
spll $(NSOURCE) $(OBJDIR)/$(*F).f90
$(SPLL) $(NSOURCE) $(OBJDIR)/$(*F).f90
rm -f $(OBJDIR)/$(*F).f90
%.D:%.fx90
$(CPP) $(INC) $(CPPFLAGS) $< > $(OBJDIR)/$(*F).fx90
spll $(NSOURCE) $(OBJDIR)/$(*F).fx90
$(SPLL) $(NSOURCE) $(OBJDIR)/$(*F).fx90
rm -f $(OBJDIR)/$(*F).fx90
%.D:%.f
$(CPP) $(INC) $(CPPFLAGS) $< > $(OBJDIR)/$(*F).f
spll $(NSOURCE) $(OBJDIR)/$(*F).f
$(SPLL) $(NSOURCE) $(OBJDIR)/$(*F).f
rm -f $(OBJDIR)/$(*F).f
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment