Most of modules organized
Most of the modules are organized in subfolders. Maybe some big re-organization is needed in the future, but for now I am happy.
This commit is contained in:
parent
d9a1869564
commit
9484502d0b
13 changed files with 37 additions and 15 deletions
11
src/modules/common/makefile
Normal file
11
src/modules/common/makefile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
OBJS = moduleCompTime.o moduleCaseParam.o moduleConstParam.o \
|
||||
moduleErrors.o moduleMath.o moduleParallel.o \
|
||||
moduleRandom.o moduleRefParam.o moduleTable.o
|
||||
|
||||
all: $(OBJS)
|
||||
|
||||
moduleTable.o: moduleErrors.o moduleTable.f90
|
||||
$(FC) $(FCFLAGS) -c $(subst .o,.f90,$@) -o $(OBJDIR)/$@
|
||||
|
||||
%.o: %.f90
|
||||
$(FC) $(FCFLAGS) -c $< -o $(OBJDIR)/$@
|
||||
Loading…
Add table
Add a link
Reference in a new issue