SHELL = /bin/sh

DIR = $$HOME/lib
LIBS = -lftp

.SUFFIXES: .f .out

.f.out:
	f77 -O $< -L$(DIR) $(LIBS) -o $@

clean:
	rm *.out

