Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
f77 -O1 eik.f
f77 -O1 -c eik.f
f77 -o eik eik.o
F77=f77
FFLAGS= -O1
# Executables
eik: eik.o
$(F77) $(FFLAGS) -o eik eik.o
# Object files
eik.o: eik.f eik.out vel1 eik.para velo
$(F77) $(FFLAGS) -c eik.f -o eik.o