11 lines
170 B
Makefile
11 lines
170 B
Makefile
#
|
|
# * Fortraneries *
|
|
#
|
|
# Makefile for the general purpose moduls
|
|
#
|
|
|
|
GFOPT = -Wall -Wextra -time -g -O
|
|
|
|
spitpgm.o: spitpgm.f90 Makefile
|
|
gfortran $(GFOPT) -c $< -o $@
|