This should not have been a single commit. Now we have input files. Also, I've restructured the code and renamed modules.
16 lines
480 B
Makefile
16 lines
480 B
Makefile
OBJECTS = $(OBJDIR)/constantParameters.o \
|
|
$(OBJDIR)/input.o \
|
|
$(OBJDIR)/output.o \
|
|
$(OBJDIR)/referenceValues.o \
|
|
$(OBJDIR)/tableBoundary.o \
|
|
$(OBJDIR)/tableTNZ.o
|
|
|
|
|
|
all: $(OUTPUT)
|
|
|
|
$(OUTPUT): modules.o $(OUTPUT).f90
|
|
$(FC) $(FCFLAGS) -o $(OBJDIR)/$(OUTPUT).o -c $(OUTPUT).f90
|
|
$(FC) $(FCFLAGS) -o $(TOPDIR)/$(OUTPUT) $(OBJECTS) $(OBJDIR)/$(OUTPUT).o -lopenblas
|
|
|
|
modules.o:
|
|
$(MAKE) -C modules all
|