#
# An example makefile for use with Meiko FORTRAN 77
#
.SUFFIXES:
.SUFFIXES: .f .s

.f.s:
	f77 -S $*.f

triang: triang.f
	f77 -o $@ triang.f
