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

Upload New File

parent 501512a6
No related branches found
No related tags found
No related merge requests found
FC=gfortran
FCFLAGS=-std=legacy -O3
LFLAGS=
all: edfb sph
edfb: edfb.o
$(FC) $(FCFLAGS) -o edfb edfb.o $(LFLAGS)
sph: sph.o
$(FC) $(FCFLAGS) -o sph sph.o $(LFLAGS)
clean:
rm -f *.o
wipe:
rm -f edfb sph *.o
%.o : %.f
$(FC) $(FCFLAGS) -c -o $@ $<
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment