Skip to content
Snippets Groups Projects
Commit 501512a6 authored by Giacomo Mulas's avatar Giacomo Mulas
Browse files

Upload New File

parent c9244503
Branches
Tags
No related merge requests found
FC=gfortran
FCFLAGS=-std=legacy -O3
LFLAGS=
all: clu edfb
clu: clu.o
$(FC) $(FCFLAGS) -o clu clu.o $(LFLAGS)
edfb: edfb.o
$(FC) $(FCFLAGS) -o edfb edfb.o $(LFLAGS)
clean:
rm -f *.o
wipe:
rm -f clu edfb *.o
%.o : %.f
$(FC) $(FCFLAGS) -c -o $@ $<
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment